add fishlim plugin

This commit is contained in:
Berke Viktor
2011-11-24 23:17:31 +01:00
parent 895e3b6b40
commit 1a96ca3edd
21 changed files with 1265 additions and 0 deletions

5
plugins/fishlim/bool.h Normal file
View File

@ -0,0 +1,5 @@
/* stdbool.h replacement for MSVC */
#define false 0
#define true 1
#define bool _Bool
typedef int _Bool;