Changeset 381
- Timestamp:
- Apr 12, 2010, 4:04:46 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Lucide/plugins/lujpeg/lujpeg.cpp ¶
r367 r381 55 55 #include "lujpeg.xih" 56 56 57 #define HAVE_BOOLEAN58 59 57 #include <stdio.h> 60 58 #include <stdlib.h> 61 59 #include <string.h> 62 60 #include <setjmp.h> 61 62 // jpeglib defines boolean as int while SOM defines it as unsigned char, 63 // work this around (note that you need to use jpeg_boolean in this source if 64 // you need to refer to the jpeglib's definition of it) 65 #define boolean jpeg_boolean 63 66 #include <jpeglib.h> 67 #undef boolean 64 68 65 69
Note:
See TracChangeset
for help on using the changeset viewer.