home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Troubleshooting Netware Systems
/
CSTRIAL0196.BIN
/
attach
/
msj
/
v10n05
/
gotcha.exe
/
CD32DEMO.H
< prev
next >
Wrap
C/C++ Source or Header
|
1995-05-01
|
1KB
|
34 lines
#include <windows.h> // Windows
#include "basedefs.h" // Dave's stuff
#include "base1ui.h" // Symbols for resources
//===============================================================
//
// Public Function Prototypes (called between code segements)
//
// Preface these functions with the filename that they live in,
// that makes it easier to find them once your program gets
// mondo, and you can quickly recognize far calls in your code.
//
//===============================================================
WINPROC CD32DEMO_WndProc ( WINDOWS_PARAMS );
//===============================================================
//
// Global Variables. The GLOBAL and GLOBAL CHAR macros expect
// that *one* of your .C files has the INMAIN symbol defined,
// all the other C files should NOT have the INMAIN symbol
// defined.
//
// If you are using precompiled headers, you will need one
// PCH file for the INMAIN definition, and one for the
// non INMAIN definition.
//
//===============================================================
GLOBAL HANDLE ghInst;
GLOBAL HWND ghWnd;
GLOBALCHAR (szAppName[],"CD32DEMO" );
GLOBALCHAR (szCaption[],"Common Dialog File Open Demo" );