--- Daodan/src/Daodan.h 2013/03/07 17:26:13 692 +++ Daodan/src/Daodan.h 2013/03/19 15:00:23 705 @@ -2,14 +2,26 @@ #define DAODAN_H #include +#include #include "stdint.h" #define ONICALL __fastcall +#define UUmType(t) typedef struct t t; + +#define DDmAssert(expr) assert(expr); + +typedef unsigned char UUtBool; +#define UUcTrue ((UUtBool) 1) +#define UUcFalse ((UUtBool) 0) + +typedef unsigned short UUtError; +#define UUcError_None ((UUtError) 0) extern HMODULE DDrDLLModule; extern HMODULE DDrONiModule; extern bool opt_border; extern bool opt_topmost; +extern bool opt_gamma; #endif