Last change
on this file since 831 was 705, checked in by alloc, 12 years ago |
Daodan: DaodanGL fixes, intro/outro fixes, chinese=true by default
|
File size:
534 bytes
|
Rev | Line | |
---|
[272] | 1 | #ifndef DAODAN_H
|
---|
| 2 | #define DAODAN_H
|
---|
| 3 |
|
---|
| 4 | #include <windows.h>
|
---|
[705] | 5 | #include <assert.h>
|
---|
[692] | 6 | #include "stdint.h"
|
---|
[272] | 7 |
|
---|
[273] | 8 | #define ONICALL __fastcall
|
---|
[705] | 9 | #define UUmType(t) typedef struct t t;
|
---|
[273] | 10 |
|
---|
[705] | 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 |
|
---|
[272] | 20 | extern HMODULE DDrDLLModule;
|
---|
| 21 | extern HMODULE DDrONiModule;
|
---|
| 22 |
|
---|
[468] | 23 | extern bool opt_border;
|
---|
| 24 | extern bool opt_topmost;
|
---|
[705] | 25 | extern bool opt_gamma;
|
---|
[468] | 26 |
|
---|
[272] | 27 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.