XMMS2
src/include/xmmsc/xmmsc_stdbool.h
Go to the documentation of this file.
00001 #ifndef XMMSC_STDBOOL_H
00002 #define XMMSC_STDBOOL_H
00003 
00004 #ifdef _MSC_VER
00005 #define __bool_true_false_are_defined 1
00006 typedef int bool;
00007 #define true 1
00008 #define false 0
00009 
00010 #else
00011 #ifndef __cplusplus
00012 #include <stdbool.h>
00013 #endif
00014 
00015 #endif
00016 
00017 #endif