From e7ff92be04fbf177d03f290d689dfd93289607b9 Mon Sep 17 00:00:00 2001 From: kramm Date: Tue, 4 Dec 2001 08:32:44 +0000 Subject: [PATCH] added #defines for TRUE/FALSE (rfxswf.h), and tell jpeglib that we have our own boolean datatype (rfxswf.c). --- lib/rfxswf.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/rfxswf.h b/lib/rfxswf.h index d619aeb..afee79c 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -22,6 +22,13 @@ #define DEBUG_RFXSWF +#ifndef TRUE +#define TRUE (1) +#endif +#ifndef FALSE +#define FALSE (1) +#endif + // SWF Types typedef unsigned long U32; -- 1.7.10.4