source: Daodan/src/Oni/stdtypes.h@ 1163

Last change on this file since 1163 was 992, checked in by alloc, 11 years ago

Daodan: Removed unused MSVC tree, build folders; reorganized source layout; removed Flatline from current Daodan

File size: 538 bytes
Line 
1#ifndef ONI_H
2#error Do not include this file directly, include Oni/Oni.h instead!
3#endif
4
5#ifndef STDTYPES_H
6#define STDTYPES_H
7
8#define UUmType(t) typedef struct t t;
9
10typedef unsigned char UUtBool;
11#define UUcTrue ((UUtBool) 1)
12#define UUcFalse ((UUtBool) 0)
13
14typedef unsigned short UUtError;
15#define UUcError_None ((UUtError) 0)
16
17typedef unsigned char UUtUns8;
18typedef unsigned short UUtUns16;
19typedef unsigned int UUtUns32;
20typedef char UUtInt8;
21typedef short UUtInt16;
22typedef int UUtInt32;
23
24typedef unsigned char onibool;
25
26#endif
Note: See TracBrowser for help on using the repository browser.