home *** CD-ROM | disk | FTP | other *** search
- --------------------------------------------------------------------------------
- --
- -- COPYRIGHT:
- -- IBM WorkFrame - Project Smarts
- -- (C) Copyright International Business Machines Corporation 1996
- -- Licensed Material - Program-Property of IBM - All Rights Reserved.
- -- US Government Users Restricted Rights - Use, duplication, or disclosure
- -- restricted by GSA ADP Schedule Contract with IBM Corp.
- --
- --------------------------------------------------------------------------------
- <include prologc.tde>
-
- /*-----------------------*/
- /* Some base offsets to */
- /* allow easy ID conflict*/
- /* resolution. */
- /*-----------------------*/
-
- #define ID_MENU_BASE 0x1000
- #define ID_DLG_BASE 0x1100
- #define ID_WINDOW_BASE 0x0010
- #define ID_BITMAPS_BASE 0x0100
-
- /*---------------------*/
- /* IDs for Windows and */
- /* dialogs. */
- /*---------------------*/
-
- #define ID_WINDOW ID_WINDOW_BASE
- #define IDD_SOME_DLG ID_WINDOW_BASE + 1
-
- /*-----------------------*/
- /* Icons and bitmaps */
- /*-----------------------*/
-
- #define ID_WINDOW_ICON ID_BITMAPS_BASE
- #define ID_WINDOW_BITMAP ID_BITMAPS_BASE + 1
-
- /*-------------------------*/
- /* Menus and menu items */
- /* */
- /*-------------------------*/
-
- #define ID_FIRST ID_MENU_BASE
- #define ID_SECOND ID_MENU_BASE + 10
-
- #define ID_F_ONE ID_FIRST + 1
- #define ID_F_TWO ID_FIRST + 2
- #define ID_F_THREE ID_FIRST + 3
- #define ID_F_EXIT ID_FIRST + 4
-
- #define ID_S_FOUR ID_SECOND + 1
- #define ID_S_FIVE ID_SECOND + 2
- #define ID_S_SIX ID_SECOND + 3
-
- /*-------------------------*/
- /* Dialog resource IDs */
- /* (if a dialog exists */
- /*-------------------------*/
-
- #define SOME_DLG_RESOURCE ID_DLG_BASE
-
- /*---------------------*/
- /* IDs for help tables */
- /*---------------------*/
-
- #define ID_HELP_TABLES 0x0010
- #define ID_HELP_BASE 0x0100
-
- #define IDH_WINDOW_HELPTABLE 10
-
- #define IDH_SUBTABLE_MAIN 11
- #define IDH_SOME_DLG 12
-
- #define IDH_GENHELP_MAIN 100
- #define IDH_GENHELP_SOME_DLG 200
-
- #define IDH_F_ONE 101
- #define IDH_F_TWO 102
- #define IDH_F_THREE 103
- #define IDH_F_EXIT 104
- #define IDH_S_FOUR 105
- #define IDH_S_FIVE 106
- #define IDH_S_SIX 107
-
- #define IDH_SOME_DLG_RESOURCE 201
-
- /*---------------------*/
- /* IDs for Dialogs */
- /*---------------------*/
- #define dlg_Open 300
- #define id_FName 301
- #define id_FList 302
- #define id_DList 303
- #define id_Text 304
- #define id_Scribble 305
- #define id_Graph 306
- #define id_help 307