home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / HELPEX.PAK / HELPEX.H < prev    next >
Text File  |  1995-08-29  |  843b  |  32 lines

  1. /* file menu items */
  2.  
  3. #define     IDM_NEW      100
  4. #define     IDM_OPEN     101
  5. #define     IDM_SAVE     102
  6. #define     IDM_SAVEAS   103
  7. #define     IDM_PRINT    104
  8. #define     IDM_EXIT     105
  9.  
  10. /* edit menu items */
  11.  
  12. #define     IDM_UNDO     200
  13. #define     IDM_CUT      201
  14. #define     IDM_COPY     202
  15. #define     IDM_PASTE    203
  16. #define     IDM_CLEAR    204
  17.  
  18. /* define help items */
  19.  
  20. #define     IDM_ABOUT          300
  21. #define     IDM_HELP_INDEX     301
  22. #define     IDM_HELP_KEYBOARD  302
  23. #define     IDM_HELP_HELP      303
  24.  
  25. #define EXE_NAME_MAX_SIZE  128
  26.  
  27. int PASCAL WinMain(HINSTANCE, HINSTANCE, LPSTR, int);
  28. BOOL InitApplication(HINSTANCE);
  29. BOOL InitInstance(HINSTANCE, int);
  30. LRESULT CALLBACK _export MainWndProc(HWND, UINT, WPARAM, LPARAM);
  31. BOOL FAR PASCAL _export About(HWND, UINT, WPARAM, LPARAM);
  32.