VS stdint-files
This commit is contained in:
parent
c43c1444c8
commit
4b3291f6b1
3 changed files with 566 additions and 0 deletions
14
win32/stdint/stdbool.h
Normal file
14
win32/stdint/stdbool.h
Normal 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_
|
||||
Loading…
Add table
Add a link
Reference in a new issue