added #defines for TRUE/FALSE (rfxswf.h), and tell jpeglib that we
authorkramm <kramm>
Tue, 4 Dec 2001 08:32:44 +0000 (08:32 +0000)
committerkramm <kramm>
Tue, 4 Dec 2001 08:32:44 +0000 (08:32 +0000)
have our own boolean datatype (rfxswf.c).

lib/rfxswf.h

index d619aeb..afee79c 100644 (file)
 
 #define DEBUG_RFXSWF
 
+#ifndef TRUE
+#define TRUE (1)
+#endif
+#ifndef FALSE
+#define FALSE (1)
+#endif
+
 // SWF Types
 
 typedef         unsigned long   U32;