source: Daodan/src/Daodan.h@ 705

Last change on this file since 705 was 705, checked in by alloc, 12 years ago

Daodan: DaodanGL fixes, intro/outro fixes, chinese=true by default

File size: 534 bytes
Line 
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
13typedef unsigned char UUtBool;
14#define UUcTrue ((UUtBool) 1)
15#define UUcFalse ((UUtBool) 0)
16
17typedef unsigned short UUtError;
18#define UUcError_None ((UUtError) 0)
19
20extern HMODULE DDrDLLModule;
21extern HMODULE DDrONiModule;
22
23extern bool opt_border;
24extern bool opt_topmost;
25extern bool opt_gamma;
26
27#endif
Note: See TracBrowser for help on using the repository browser.