| Revision: | 838 |
| Committed: | Mon Apr 29 16:29:16 2013 UTC (12 years, 6 months ago) by alloc |
| Content type: | text/x-chdr |
| File size: | 457 byte(s) |
| Log Message: | Daodan: - Fixes #40 - Moved configuration parsing (ini, command line) into its own file |
| # | Content |
|---|---|
| 1 | #ifndef DAODAN_H |
| 2 | #define DAODAN_H |
| 3 | |
| 4 | #include <windows.h> |
| 5 | #include <assert.h> |
| 6 | #include "stdint.h" |
| 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) |
| 19 | |
| 20 | extern HMODULE DDrDLLModule; |
| 21 | extern HMODULE DDrONiModule; |
| 22 | |
| 23 | #endif |