--- Daodan/src/Daodan.h 2009/10/18 02:26:30 468 +++ Daodan/src/Daodan.h 2013/04/29 16:29:16 838 @@ -1,17 +1,23 @@ -#pragma once #ifndef DAODAN_H #define DAODAN_H #include -#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_shadow; -extern bool opt_topmost; - #endif