home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
larcos.zip
/
EXAMPLES.ZIP
/
LHELLO.H
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-15
|
2KB
|
48 lines
//******************************************************************************
// LHELLO.H
//
// LARC_S "LARC Examples"
// LARC_D "Main Header File"
// LARC_V "100"
//
// Revision history:
// kbg 05/15/94 100 - Created.
//
//******************************************************************************
//******************************************************************************
//
// Define the menus used by this program.
//
//******************************************************************************
#define IDM_EXIT 1000
#define IDM_ABOUT 1001
#define IDD_VERSION 2000
//******************************************************************************
//
// Define the working variable used by this program.
//
//******************************************************************************
#define FALSE 0
#define TRUE 1
#include "release.h"
HWND hWndMain = NULL; // Main window handle
HINSTANCE hInst = NULL; // Instance handle for application
HCURSOR hcurSave; // cursor handle for StartWait/EndWait()
char *szAppName = "LHello"; // app name for main window class
//******************************************************************************
//
// Define the function prototypes used by this program.
//
//******************************************************************************
long FAR PASCAL WndProc (HWND, UINT, WPARAM, LPARAM);
BOOL FAR PASCAL AboutProc (HWND, UINT, WPARAM, LPARAM);
BOOL SetUpWindowClass (HANDLE);