home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12267.ZIP / SERVER.H < prev    next >
Text File  |  1988-11-01  |  545b  |  26 lines

  1. /****** Resource IDs *****/
  2.  
  3. #define IDR_GENAPP    1
  4.  
  5. /****** Menu command IDs *****/
  6. /* (by convention, hi byte is menu index, lo byte is dispatch table index) */
  7.  
  8. /* File menu */
  9.  
  10. #define CMD_NEW     0x0000
  11. #define CMD_OPEN    0x0001
  12. #define CMD_SAVE    0x0002
  13. #define CMD_SAVEAS  0x0003
  14.  
  15. /* Edit menu */
  16. #define CMD_UNDO    0x0104
  17. #define CMD_CUT     0x0105
  18. #define CMD_COPY    0x0106
  19. #define CMD_PASTE   0x0107
  20. #define CMD_CLEAR   0x0108
  21.  
  22. /* Number of menu commands */
  23. #define CCMDS       (4+5)
  24.  
  25. typedef HWND HCHNL;
  26.