ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/Daodan/src/Oni/stdtypes.h
Revision: 992
Committed: Sat Apr 5 10:19:11 2014 UTC (11 years, 7 months ago) by alloc
Content type: text/x-chdr
File size: 538 byte(s)
Log Message:
Daodan: Removed unused MSVC tree, build folders; reorganized source layout; removed Flatline from current Daodan

File Contents

# Content
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
10 typedef unsigned char UUtBool;
11 #define UUcTrue ((UUtBool) 1)
12 #define UUcFalse ((UUtBool) 0)
13
14 typedef unsigned short UUtError;
15 #define UUcError_None ((UUtError) 0)
16
17 typedef unsigned char UUtUns8;
18 typedef unsigned short UUtUns16;
19 typedef unsigned int UUtUns32;
20 typedef char UUtInt8;
21 typedef short UUtInt16;
22 typedef int UUtInt32;
23
24 typedef unsigned char onibool;
25
26 #endif