XMMS2
xmmsc_stdbool.h
Go to the documentation of this file.
1 #ifndef XMMSC_STDBOOL_H
2 #define XMMSC_STDBOOL_H
3 
4 #ifdef _MSC_VER
5 #define __bool_true_false_are_defined 1
6 typedef int bool;
7 #define true 1
8 #define false 0
9 
10 #else
11 #ifndef __cplusplus
12 #include <stdbool.h>
13 #endif
14 
15 #endif
16 
17 #endif