git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2557549
)
added #defines for TRUE/FALSE (rfxswf.h), and tell jpeglib that we
author
kramm
<kramm>
Tue, 4 Dec 2001 08:32:44 +0000
(08:32 +0000)
committer
kramm
<kramm>
Tue, 4 Dec 2001 08:32:44 +0000
(08:32 +0000)
have our own boolean datatype (rfxswf.c).
lib/rfxswf.h
patch
|
blob
|
history
diff --git
a/lib/rfxswf.h
b/lib/rfxswf.h
index
d619aeb
..
afee79c
100644
(file)
--- 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;