]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - jpeg.h
eliminated qbyte type, now uses unsigned char throughout the engine for this purpose
[xonotic/darkplaces.git] / jpeg.h
diff --git a/jpeg.h b/jpeg.h
index d6bf4808a48c83ced58d388d3246ca10857fef6e..6a9dd56359a79fd87875b57cfa5ead004a3c78c4 100644 (file)
--- a/jpeg.h
+++ b/jpeg.h
@@ -27,8 +27,8 @@
 
 qboolean JPEG_OpenLibrary (void);
 void JPEG_CloseLibrary (void);
-qbyte* JPEG_LoadImage (const qbyte *f, int matchwidth, int matchheight);
-qboolean JPEG_SaveImage_preflipped (const char *filename, int width, int height, qbyte *data);
+unsigned char* JPEG_LoadImage (const unsigned char *f, int matchwidth, int matchheight);
+qboolean JPEG_SaveImage_preflipped (const char *filename, int width, int height, unsigned char *data);
 
 
 #endif