Fix redundant glTexEnv calls
[neverball] / share / fs_jpg.h
1 #ifndef FS_JPG
2 #define FS_JPG
3
4 /*
5  * jpeglib.h triggers errors due to missing size_t and FILE type
6  * definitions.  Include these two headers as a workaround.
7  */
8
9 #include <stddef.h>
10 #include <stdio.h>
11 #include <jpeglib.h>
12
13 #include "fs.h"
14
15 void fs_jpg_src(j_decompress_ptr cinfo, fs_file infile);
16
17 #endif