summary refs log tree commit diff stats
path: root/plugins/fishlim/bool.h
diff options
context:
space:
mode:
authorBerke Viktor <berkeviktor@aol.com>2011-11-24 23:17:31 +0100
committerBerke Viktor <berkeviktor@aol.com>2011-11-24 23:17:31 +0100
commit1a96ca3edd2b3b503a00180a8d1bb225cac2059b (patch)
tree3d06014fb0c47873b2260eef2c4a44bde25d2b8d /plugins/fishlim/bool.h
parent895e3b6b40c8a50231e775e3ccca1e4437946eb8 (diff)
add fishlim plugin
Diffstat (limited to 'plugins/fishlim/bool.h')
-rw-r--r--plugins/fishlim/bool.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/fishlim/bool.h b/plugins/fishlim/bool.h
new file mode 100644
index 00000000..2c8ddde4
--- /dev/null
+++ b/plugins/fishlim/bool.h
@@ -0,0 +1,5 @@
+/* stdbool.h replacement for MSVC */
+#define false 0
+#define true 1
+#define bool _Bool
+typedef int _Bool;