home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / larcos.zip / EXAMPLES.ZIP / LHELLO.H < prev    next >
C/C++ Source or Header  |  1994-05-15  |  2KB  |  48 lines

  1. //******************************************************************************
  2. // LHELLO.H
  3. //
  4. // LARC_S "LARC Examples"
  5. // LARC_D "Main Header File"
  6. // LARC_V "100"
  7. //
  8. // Revision history:
  9. // kbg 05/15/94 100 - Created.
  10. //
  11. //******************************************************************************
  12.  
  13.  
  14. //******************************************************************************
  15. //
  16. // Define the menus used by this program.
  17. //
  18. //******************************************************************************
  19. #define IDM_EXIT                          1000
  20. #define IDM_ABOUT                         1001
  21.  
  22. #define IDD_VERSION                       2000
  23.  
  24. //******************************************************************************
  25. //
  26. //  Define the working variable used by this program.
  27. //
  28. //******************************************************************************
  29. #define FALSE           0
  30. #define TRUE            1
  31.  
  32. #include "release.h"
  33.  
  34. HWND        hWndMain = NULL;        // Main window handle
  35. HINSTANCE   hInst = NULL;           // Instance handle for application
  36. HCURSOR     hcurSave;               // cursor handle for StartWait/EndWait()
  37.  
  38. char        *szAppName = "LHello";  // app name for main window class
  39.     
  40. //******************************************************************************
  41. //
  42. //  Define the function prototypes used by this program.
  43. //
  44. //******************************************************************************
  45. long FAR PASCAL WndProc (HWND, UINT, WPARAM, LPARAM);
  46. BOOL FAR PASCAL AboutProc (HWND, UINT, WPARAM, LPARAM);
  47. BOOL SetUpWindowClass (HANDLE);
  48.