#ifndef DAODAN_H #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) typedef unsigned char UUtUns8; typedef unsigned short UUtUns16; typedef unsigned int UUtUns32; typedef char UUtInt8; typedef short UUtInt16; typedef int UUtInt32; extern HMODULE DDrDLLModule; extern HMODULE DDrONiModule; #endif