VS stdint-files

This commit is contained in:
Roel Verdult 2009-07-23 10:22:03 +00:00
parent c43c1444c8
commit 4b3291f6b1
3 changed files with 566 additions and 0 deletions

14
win32/stdint/stdbool.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef _STDBOOL_H_
#define _STDBOOL_H_
#define __bool_true_false_are_defined 1
#ifndef __cplusplus
#define false 0
#define true 1
typedef int bool;
#endif // __cplusplus
#endif // _STDBOOL_H_