about summary refs log tree commit homepage
path: root/projects/mongrel_service/native/boolean.bi
diff options
context:
space:
mode:
Diffstat (limited to 'projects/mongrel_service/native/boolean.bi')
-rw-r--r--projects/mongrel_service/native/boolean.bi18
1 files changed, 18 insertions, 0 deletions
diff --git a/projects/mongrel_service/native/boolean.bi b/projects/mongrel_service/native/boolean.bi
new file mode 100644
index 0000000..8ca07c7
--- /dev/null
+++ b/projects/mongrel_service/native/boolean.bi
@@ -0,0 +1,18 @@
+'#--
+'# Copyright (c) 2006-2007 Luis Lavena, Multimedia systems
+'#
+'# This source code is released under the MIT License.
+'# See MIT-LICENSE file for details
+'#++
+
+#ifndef __BOOLEAN_BI__
+#define __BOOLEAN_BI__
+
+#undef BOOLEAN
+type BOOLEAN as byte
+#undef FALSE
+const FALSE as byte = 0
+#undef TRUE
+const TRUE as byte = not FALSE
+
+#endif ' __BOOLEAN_BI__ \ No newline at end of file