| 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 |