home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
-
- global.h
- --------
-
- Global data for the TextView DLL demonstration application
-
- This source is Copyright (c) Alan Phillips 1991. It may be freely used
- and adapted for non-commercial applications. Commercial and ShareWare
- authors should first obtain the written permission of the author.
-
- The source is edited with a tab size of 4.
-
- *****************************************************************************/
-
- #ifdef MAINDEF
-
- HANDLE hInst; /* handle of current instance */
- HWND hMainWnd; /* handle of main window */
- BOOL tracing = FALSE; /* tracing active? */
- HWND hTraceWnd; /* handle to trace window */
-
- #else
-
- extern HANDLE hInst;
- extern HWND hMainWnd;
- extern BOOL tracing;
- extern HWND hTraceWnd;
-
- #endif
-