home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 7.ddi / MWHC.007 / C8 < prev    next >
Encoding:
Text File  |  1991-08-28  |  628 b   |  25 lines

  1. #define IDM_ABOUT 100
  2.  
  3. /* file menu items */
  4.  
  5. #define     IDM_NEW      101
  6. #define     IDM_OPEN     102
  7. #define     IDM_SAVE     103
  8. #define     IDM_SAVEAS   104
  9. #define     IDM_PRINT    105
  10. #define     IDM_EXIT     106
  11.  
  12. /* edit menu items */
  13.  
  14. #define     IDM_UNDO     200
  15. #define     IDM_CUT      201
  16. #define     IDM_COPY     202
  17. #define     IDM_PASTE    203
  18. #define     IDM_CLEAR    204
  19.  
  20. int PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
  21. BOOL InitApplication(HANDLE);
  22. BOOL InitInstance(HANDLE, int);
  23. long FAR PASCAL MainWndProc(HWND, WORD, WORD, LONG);
  24. BOOL FAR PASCAL About(HWND, unsigned, WORD, LONG);
  25.