mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
806 B
49 lines
806 B
/* MINE HEADER FILE */
|
|
|
|
#ifdef DEBUG
|
|
#define CHEAT
|
|
#endif
|
|
|
|
#ifdef BETA_VERSION
|
|
#define NOSERVER
|
|
#define EXPIRE
|
|
#endif
|
|
|
|
#define FAST
|
|
|
|
/*** Standard Stuff ***/
|
|
|
|
#define REGISTER register
|
|
|
|
#define fTrue TRUE
|
|
#define fFalse FALSE
|
|
|
|
#define hNil NULL
|
|
|
|
#define cchMsgMax 128
|
|
#define cchMaxPathname 250
|
|
|
|
|
|
#define ID_TIMER 1
|
|
|
|
|
|
#define fmenuAlwaysOn 0x00
|
|
#define fmenuOff 0x01
|
|
#define fmenuOn 0x02
|
|
|
|
#define FMenuSwitchable() (Preferences.fMenu != fmenuAlwaysOn)
|
|
#define FMenuOn() ((Preferences.fMenu & 0x01) == 0)
|
|
|
|
#define fCalc 0x01
|
|
#define fResize 0x02
|
|
#define fDisplay 0x04
|
|
|
|
|
|
#define xBoxFromXpos(x) ( ((x)-(dxGridOff-dxBlk)) >> 4)
|
|
#define yBoxFromYpos(y) ( ((y)-(dyGridOff-dyBlk)) >> 4)
|
|
|
|
|
|
VOID AdjustWindow(INT);
|
|
VOID FixMenus(VOID);
|
|
VOID DoEnterName(VOID);
|
|
VOID DoDisplayBest(VOID);
|