home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv7.zip / VACPP / IBMCPP / smarts / RESDLL / RESDLL.H < prev    next >
Text File  |  1995-06-02  |  2KB  |  78 lines

  1. %PROLOG%
  2.  
  3. /*-----------------------*/
  4. /* Some base offsets to  */
  5. /* allow easy ID conflict*/
  6. /* resolution.           */
  7. /*-----------------------*/
  8.  
  9. #define ID_MENU_BASE             0x1000
  10. #define ID_DLG_BASE              0x1100
  11. #define ID_WINDOW_BASE           0x0010
  12. #define ID_BITMAPS_BASE          0x0100
  13.  
  14. /*---------------------*/
  15. /* IDs for Windows and */
  16. /* dialogs.            */
  17. /*---------------------*/
  18.  
  19. #define ID_WINDOW           ID_WINDOW_BASE
  20. #define IDD_SOME_DLG        ID_WINDOW_BASE + 1
  21.  
  22. /*-----------------------*/
  23. /* Icons and bitmaps     */
  24. /*-----------------------*/
  25.  
  26. #define ID_WINDOW_ICON      ID_BITMAPS_BASE
  27. #define ID_WINDOW_BITMAP    ID_BITMAPS_BASE + 1
  28.  
  29. /*-------------------------*/
  30. /* Menus and menu items    */
  31. /*                         */
  32. /*-------------------------*/
  33.  
  34. #define ID_FIRST            ID_MENU_BASE
  35. #define ID_SECOND           ID_MENU_BASE + 10
  36.  
  37. #define ID_F_ONE            ID_FIRST + 1
  38. #define ID_F_TWO            ID_FIRST + 2
  39. #define ID_F_THREE          ID_FIRST + 3
  40. #define ID_F_EXIT           ID_FIRST + 4
  41.  
  42. #define ID_S_FOUR           ID_SECOND + 1
  43. #define ID_S_FIVE           ID_SECOND + 2
  44. #define ID_S_SIX            ID_SECOND + 3
  45.  
  46. /*-------------------------*/
  47. /* Dialog resource IDs     */
  48. /* (if a dialog exists     */
  49. /*-------------------------*/
  50.  
  51. #define  SOME_DLG_RESOURCE      ID_DLG_BASE
  52.  
  53. /*---------------------*/
  54. /* IDs for help tables */
  55. /*---------------------*/
  56.  
  57. #define ID_HELP_TABLES           0x0010
  58. #define ID_HELP_BASE             0x0100
  59.  
  60. #define IDH_WINDOW_HELPTABLE     10
  61.  
  62. #define IDH_SUBTABLE_MAIN        11
  63. #define IDH_SOME_DLG             12
  64.  
  65. #define IDH_GENHELP_MAIN         100
  66. #define IDH_GENHELP_SOME_DLG     200
  67.  
  68. #define IDH_F_ONE                101
  69. #define IDH_F_TWO                102
  70. #define IDH_F_THREE              103
  71. #define IDH_F_EXIT               104
  72. #define IDH_S_FOUR               105
  73. #define IDH_S_FIVE               106
  74. #define IDH_S_SIX                107
  75.  
  76. #define IDH_SOME_DLG_RESOURCE    201
  77.  
  78.