home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / PCTV3N1.ZIP / SKETCH.ZIP / QSKETCH.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-06  |  493 b   |  16 lines

  1. /* QuickCase:W KNB Version 1.00 */
  2. #include <windows.h>
  3. #include <string.h>
  4. #define IDM_MENU     1000
  5. #define IDM_M_ERASE  1050
  6. #define IDM_M_EXIT   1150
  7. #define IDS_ERR_REGISTER_CLASS   1
  8. #define IDS_ERR_CREATE_WINDOW    2
  9. char szString[128];   /* variable to load resource strings */
  10. char szAppName[20];   /* class name for the window */
  11. HWND hInst;
  12. HWND hWndMain;
  13. LONG FAR PASCAL WndProc(HWND, WORD, WORD, LONG);
  14. int nCwRegisterClasses(void);
  15. void CwUnRegisterClasses(void);
  16.