if WITH_SMYRNA
noinst_HEADERS = glcompset.h glcomptexture.h glutils.h
-noinst_LTLIBRARIES = libglcomp.la
+noinst_LTLIBRARIES = libglcomp_C.la
endif
libglcomp_C_la_SOURCES = glcompset.c glcomptexture.c glutils.c
glCompTexture* glCompCreateTextureFromRaw(char* filename,int width,int height,int wrap)
{
glCompTexture* t;
+#ifdef _WIN32
BYTE * data;
+#else
+ unsigned char *data;
+#endif
FILE * file;
t=malloc(sizeof(glCompTexture));
glGenTextures( 1, &t->id );
int glCompDeleteTexture(glCompTexture* t)
{
return 0;
-}
\ No newline at end of file
+}