Changeset 705 for Daodan/src/Daodan.h
- Timestamp:
- Mar 19, 2013, 4:00:23 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Daodan/src/Daodan.h
r692 r705 3 3 4 4 #include <windows.h> 5 #include <assert.h> 5 6 #include "stdint.h" 6 7 7 8 #define ONICALL __fastcall 9 #define UUmType(t) typedef struct t t; 10 11 #define DDmAssert(expr) assert(expr); 12 13 typedef unsigned char UUtBool; 14 #define UUcTrue ((UUtBool) 1) 15 #define UUcFalse ((UUtBool) 0) 16 17 typedef unsigned short UUtError; 18 #define UUcError_None ((UUtError) 0) 8 19 9 20 extern HMODULE DDrDLLModule; … … 12 23 extern bool opt_border; 13 24 extern bool opt_topmost; 25 extern bool opt_gamma; 14 26 15 27 #endif
Note:
See TracChangeset
for help on using the changeset viewer.