[838] | 1 | #ifndef DAODAN_CONFIG_H
|
---|
| 2 | #define DAODAN_CONFIG_H
|
---|
| 3 |
|
---|
| 4 | #include "stdint.h"
|
---|
| 5 |
|
---|
| 6 | void DDrConfig(int argc, char* argv[]);
|
---|
| 7 |
|
---|
| 8 | extern bool patch_alttab;
|
---|
| 9 | extern bool patch_argb8888;
|
---|
| 10 | extern bool patch_binkplay;
|
---|
| 11 | extern bool patch_bsl;
|
---|
| 12 | extern bool patch_cheater;
|
---|
| 13 | extern bool patch_cheatsenabled;
|
---|
| 14 | extern bool patch_cheattable;
|
---|
| 15 | extern bool patch_clipcursor;
|
---|
| 16 | extern bool patch_cooldowntimer;
|
---|
| 17 | extern bool patch_daodandisplayenum;
|
---|
| 18 | extern bool patch_daodaninit;
|
---|
| 19 | extern bool patch_directinput;
|
---|
| 20 | extern bool patch_disablecmdline;
|
---|
| 21 | extern bool patch_fonttexturecache;
|
---|
| 22 | extern bool patch_getcmdline;
|
---|
| 23 | extern bool patch_kickguns;
|
---|
| 24 | extern bool patch_killvtune;
|
---|
| 25 | extern bool patch_largetextures;
|
---|
| 26 | extern bool patch_levelplugins;
|
---|
| 27 | extern bool patch_newweapon;
|
---|
[843] | 28 | extern bool patch_nomultibyte;
|
---|
[838] | 29 | extern bool patch_optionsvisible;
|
---|
| 30 | extern bool patch_particledisablebit;
|
---|
| 31 | extern bool patch_pathfinding;
|
---|
| 32 | extern bool patch_projaware;
|
---|
| 33 | extern bool patch_safeprintf;
|
---|
| 34 | extern bool patch_throwtest;
|
---|
| 35 | extern bool patch_usedaodangl;
|
---|
| 36 | extern bool patch_usegettickcount;
|
---|
| 37 | extern bool patch_wpfadetime;
|
---|
| 38 |
|
---|
| 39 | extern bool opt_border;
|
---|
| 40 | extern bool opt_gamma;
|
---|
| 41 | extern bool opt_topmost;
|
---|
| 42 | extern bool opt_usedaodanbsl;
|
---|
| 43 |
|
---|
| 44 | extern bool patch_chinese;
|
---|
| 45 |
|
---|
| 46 | #endif
|
---|