mirror of https://github.com/tongzx/nt5src
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.
27 lines
661 B
27 lines
661 B
/*
|
|
* GLOBALS.H
|
|
*
|
|
* Header file for DDESPY Global prototypes and Variables
|
|
*/
|
|
|
|
extern HINSTANCE hInst;
|
|
extern HICON hIcon;
|
|
extern HWND hWndString;
|
|
extern INT fhOutput;
|
|
extern OFSTRUCT ofsOpen;
|
|
extern CHAR OpenName[MAX_FNAME + 1];
|
|
extern CHAR TBuf[BUFFER_SIZE];
|
|
extern CHAR TBuf2[BUFFER_SIZE];
|
|
extern CHAR szNULL[];
|
|
extern PSTR apszResources[IDS_LAST];
|
|
extern PFNCALLBACK pfnDdeCallback;
|
|
extern HWND hwndTrack[IT_COUNT];
|
|
extern LPTSTR TrackTitle[IT_COUNT];
|
|
extern LPTSTR TrackHeading[IT_COUNT];
|
|
|
|
extern struct { /* profile data structure */
|
|
BOOL fOutput[IO_COUNT];
|
|
BOOL fFilter[IF_COUNT];
|
|
BOOL fTrack[IT_COUNT];
|
|
} pro;
|
|
|