home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / smarts / resdll / resdll.h < prev    next >
Encoding:
Text File  |  1996-02-21  |  2.9 KB  |  99 lines

  1. --------------------------------------------------------------------------------
  2. --
  3. -- COPYRIGHT:
  4. --   IBM WorkFrame - Project Smarts
  5. --   (C) Copyright International Business Machines Corporation 1996
  6. --   Licensed Material - Program-Property of IBM - All Rights Reserved.
  7. --   US Government Users Restricted Rights - Use, duplication, or disclosure
  8. --   restricted by GSA ADP Schedule Contract with IBM Corp.
  9. --
  10. --------------------------------------------------------------------------------
  11. <include prologc.tde>
  12.  
  13. /*-----------------------*/
  14. /* Some base offsets to  */
  15. /* allow easy ID conflict*/
  16. /* resolution.           */
  17. /*-----------------------*/
  18.  
  19. #define ID_MENU_BASE             0x1000
  20. #define ID_DLG_BASE              0x1100
  21. #define ID_WINDOW_BASE           0x0010
  22. #define ID_BITMAPS_BASE          0x0100
  23.  
  24. /*---------------------*/
  25. /* IDs for Windows and */
  26. /* dialogs.            */
  27. /*---------------------*/
  28.  
  29. #define ID_WINDOW           ID_WINDOW_BASE
  30. #define IDD_SOME_DLG        ID_WINDOW_BASE + 1
  31.  
  32. /*-----------------------*/
  33. /* Icons and bitmaps     */
  34. /*-----------------------*/
  35.  
  36. #define ID_WINDOW_ICON      ID_BITMAPS_BASE
  37. #define ID_WINDOW_BITMAP    ID_BITMAPS_BASE + 1
  38.  
  39. /*-------------------------*/
  40. /* Menus and menu items    */
  41. /*                         */
  42. /*-------------------------*/
  43.  
  44. #define ID_FIRST            ID_MENU_BASE
  45. #define ID_SECOND           ID_MENU_BASE + 10
  46.  
  47. #define ID_F_ONE            ID_FIRST + 1
  48. #define ID_F_TWO            ID_FIRST + 2
  49. #define ID_F_THREE          ID_FIRST + 3
  50. #define ID_F_EXIT           ID_FIRST + 4
  51.  
  52. #define ID_S_FOUR           ID_SECOND + 1
  53. #define ID_S_FIVE           ID_SECOND + 2
  54. #define ID_S_SIX            ID_SECOND + 3
  55.  
  56. /*-------------------------*/
  57. /* Dialog resource IDs     */
  58. /* (if a dialog exists     */
  59. /*-------------------------*/
  60.  
  61. #define  SOME_DLG_RESOURCE      ID_DLG_BASE
  62.  
  63. /*---------------------*/
  64. /* IDs for help tables */
  65. /*---------------------*/
  66.  
  67. #define ID_HELP_TABLES           0x0010
  68. #define ID_HELP_BASE             0x0100
  69.  
  70. #define IDH_WINDOW_HELPTABLE     10
  71.  
  72. #define IDH_SUBTABLE_MAIN        11
  73. #define IDH_SOME_DLG             12
  74.  
  75. #define IDH_GENHELP_MAIN         100
  76. #define IDH_GENHELP_SOME_DLG     200
  77.  
  78. #define IDH_F_ONE                101
  79. #define IDH_F_TWO                102
  80. #define IDH_F_THREE              103
  81. #define IDH_F_EXIT               104
  82. #define IDH_S_FOUR               105
  83. #define IDH_S_FIVE               106
  84. #define IDH_S_SIX                107
  85.  
  86. #define IDH_SOME_DLG_RESOURCE    201
  87.  
  88. /*---------------------*/
  89. /* IDs for Dialogs     */
  90. /*---------------------*/
  91. #define dlg_Open                 300
  92. #define id_FName                 301
  93. #define id_FList                 302
  94. #define id_DList                 303
  95. #define id_Text                  304
  96. #define id_Scribble              305
  97. #define id_Graph                 306
  98. #define id_help                  307
  99.