home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / rwp15.zip / MISC.RC < prev    next >
Text File  |  1993-03-24  |  1KB  |  46 lines

  1. /* --------------------------------------------------------------------
  2.                        Miscellaneous Resource File
  3.                               Chapter 15
  4.  
  5.                     Real World Programming for OS/2
  6.              Copyright (c) 1993 Blain, Delimon, and English
  7. -------------------------------------------------------------------- */
  8.  
  9. #include <os2.h>
  10. #include "misc.h"
  11. #include "pibtib.h"
  12. #include "drives.h"
  13. #include "filesrch.h"
  14. #include "sysinfo.h"
  15.  
  16. ICON ID_APPNAME MISC.ICO
  17.  
  18. STRINGTABLE LOADONCALL MOVEABLE
  19. BEGIN
  20.     ID_APPNAME      "Miscellaneous Topics Application"
  21. END
  22.  
  23. MENU ID_APPNAME
  24. {
  25.     SUBMENU  "~System",             IDM_SYSTEM
  26.     {
  27.         MENUITEM "~ThreadInfo",     IDM_PIBTIB
  28.         MENUITEM "~SysInfo",        IDM_SYSINFO
  29.         MENUITEM "",               -1,            MIS_SEPARATOR
  30.         MENUITEM "~About...",       IDM_ABOUT
  31.     }
  32.     SUBMENU  "~Files",              IDM_FILES
  33.     {
  34.         MENUITEM "~Drives",         IDM_DRIVES
  35.         MENUITEM "~File Search",    IDM_FILESEARCH
  36.     }
  37. }
  38.  
  39. rcinclude pibtib.dlg
  40. rcinclude drives.dlg
  41. rcinclude filesrch.dlg
  42. rcinclude sysinfo.dlg
  43. rcinclude ..\common\about.dlg
  44.                                        
  45.  
  46.