Annotation of mstools/ole20/samples/outline/outlrc.h, revision 1.1

1.1     ! root        1: /*************************************************************************
        !             2: ** 
        !             3: **    OLE 2.0 Sample Code
        !             4: **    
        !             5: **    outlrc.h
        !             6: **    
        !             7: **       This file containes constants used in rc file for Outline.exe
        !             8: ** 
        !             9: **       (c) Copyright Microsoft Corp. 1992 - 1993 All Rights Reserved
        !            10: **
        !            11: *************************************************************************/
        !            12: 
        !            13: #if !defined( _OUTLRC_H_ )
        !            14: #define _OUTLRC_H_
        !            15: 
        !            16: #ifndef RC_INVOKED
        !            17: #pragma message ("INCLUDING OUTLRC.H from " __FILE__)
        !            18: #endif  /* RC_INVOKED */
        !            19: 
        !            20: #if defined( OLE_SERVER ) && ! defined( INPLACE_SVR )
        !            21:                                         
        !            22: #define APPNAME                 "SvrOutl"
        !            23: #define APPMENU                 "SvrOutlMenu"
        !            24: #define APPACCEL                "SvrOutlAccel"
        !            25: #define FB_EDIT_ACCEL           "SvrOutlAccelFocusEdit"
        !            26: #define APPICON                 "SvrOutlIcon"
        !            27: #define APPWNDCLASS             "SvrOutlApp"
        !            28: #define DOCWNDCLASS             "SvrOutlDoc"
        !            29: #define APPDESC                 "OLE 2.0 Server Sample Code"
        !            30: 
        !            31: #elif defined( OLE_SERVER ) && defined( INPLACE_SVR )
        !            32:                                         
        !            33: #define APPNAME                 "ISvrOtl"
        !            34: #define APPMENU                 "SvrOutlMenu"
        !            35: #define APPACCEL                "SvrOutlAccel"
        !            36: #define FB_EDIT_ACCEL           "SvrOutlAccelFocusEdit"
        !            37: #define APPICON                 "SvrOutlIcon"
        !            38: #define APPWNDCLASS             "SvrOutlApp"
        !            39: #define DOCWNDCLASS             "SvrOutlDoc"
        !            40: #define APPDESC                 "OLE 2.0 In-Place Server Sample Code"
        !            41: 
        !            42: #elif defined( OLE_CNTR ) && ! defined( INPLACE_CNTR )
        !            43: 
        !            44: #define APPNAME                 "CntrOutl"
        !            45: #define APPMENU                 "CntrOutlMenu"
        !            46: #define APPACCEL                "CntrOutlAccel"
        !            47: #define FB_EDIT_ACCEL           "CntrOutlAccelFocusEdit"
        !            48: #define APPICON                 "CntrOutlIcon"
        !            49: #define APPWNDCLASS             "CntrOutlApp"
        !            50: #define DOCWNDCLASS             "CntrOutlDoc"
        !            51: #define APPDESC                 "OLE 2.0 Container Sample Code"
        !            52: 
        !            53: #elif defined( OLE_CNTR ) && defined( INPLACE_CNTR )
        !            54: 
        !            55: #define APPNAME                 "ICntrOtl"
        !            56: #define APPMENU                 "CntrOutlMenu"
        !            57: #define APPACCEL                "CntrOutlAccel"
        !            58: #define FB_EDIT_ACCEL           "CntrOutlAccelFocusEdit"
        !            59: #define APPICON                 "CntrOutlIcon"
        !            60: #define APPWNDCLASS             "CntrOutlApp"
        !            61: #define DOCWNDCLASS             "CntrOutlDoc"
        !            62: #define APPDESC                 "OLE 2.0 In-Place Container Sample Code"
        !            63: 
        !            64: #else 
        !            65: 
        !            66: #define APPNAME                 "Outline"
        !            67: #define APPMENU                 "OutlineMenu"
        !            68: #define APPACCEL                "OutlineAccel"
        !            69: #define FB_EDIT_ACCEL           "OutlineAccelFocusEdit"
        !            70: #define APPICON                 "OutlineIcon"
        !            71: #define APPWNDCLASS             "OutlineApp"
        !            72: #define DOCWNDCLASS             "OutlineDoc"
        !            73: #define APPDESC                 "OLE 2.0 Sample Code"
        !            74: 
        !            75: #endif
        !            76: 
        !            77: #define IDM_FILE                       1000
        !            78: #define IDM_F_NEW                      1050
        !            79: #define IDM_F_OPEN                     1100
        !            80: #define IDM_F_SAVE                     1150
        !            81: #define IDM_F_SAVEAS                   1200
        !            82: #define IDM_F_PRINT                    1300
        !            83: #define IDM_F_PRINTERSETUP             1350
        !            84: #define IDM_F_EXIT                     1450
        !            85: #define IDM_EDIT                       2000
        !            86: #define IDM_E_UNDO                     2050
        !            87: #define IDM_E_CUT                      2150
        !            88: #define IDM_E_COPY                     2200
        !            89: #define IDM_E_PASTE                    2250
        !            90: #define IDM_E_PASTESPECIAL             2255
        !            91: #define IDM_E_CLEAR                    2300
        !            92: #define IDM_E_SELECTALL                2560
        !            93: #define IDM_LINE                       3000
        !            94: #define IDM_L_ADDLINE                  3400
        !            95: #define IDM_L_EDITLINE                 3450
        !            96: #define IDM_L_INDENTLINE               3500
        !            97: #define IDM_L_UNINDENTLINE             3550
        !            98: #define IDM_L_SETLINEHEIGHT            3560
        !            99: #define IDM_NAME                       4000
        !           100: #define IDM_N_DEFINENAME               4050
        !           101: #define IDM_N_GOTONAME                 4100
        !           102: #define IDM_HELP                       5000
        !           103: #define IDM_H_ABOUT                    5050
        !           104: #define IDM_DEBUG                      6000
        !           105: #define IDM_D_DEBUGLEVEL               6050
        !           106: #define IDM_D_INSTALLMSGFILTER         6060
        !           107: #define IDM_D_REJECTINCOMING            6070
        !           108: #define IDM_O_BB_TOP                   6100
        !           109: #define IDM_O_BB_BOTTOM                6150
        !           110: #define IDM_O_BB_POPUP                 6200
        !           111: #define IDM_O_BB_HIDE                  6210
        !           112: #define IDM_O_FB_TOP                   6250
        !           113: #define IDM_O_FB_BOTTOM                6300
        !           114: #define IDM_O_FB_POPUP                 6350
        !           115: #define IDM_O_HEAD_SHOW                6400
        !           116: #define IDM_O_HEAD_HIDE                6450
        !           117: #define IDM_O_SHOWOBJECT                          6460
        !           118: #define IDM_V_ZOOM_400                 6500
        !           119: #define IDM_V_ZOOM_300                 6510
        !           120: #define IDM_V_ZOOM_200                 6520
        !           121: #define IDM_V_ZOOM_100                 6550
        !           122: #define IDM_V_ZOOM_75                  6600
        !           123: #define IDM_V_ZOOM_50                  6650
        !           124: #define IDM_V_ZOOM_25                  6700
        !           125: #define IDM_V_SETMARGIN_0              6750
        !           126: #define IDM_V_SETMARGIN_1              6800
        !           127: #define IDM_V_SETMARGIN_2              6850
        !           128: #define IDM_V_SETMARGIN_3              6860
        !           129: #define IDM_V_SETMARGIN_4              6870
        !           130: #define IDM_V_ADDTOP_1                            6900
        !           131: #define IDM_V_ADDTOP_2                            6910
        !           132: #define IDM_V_ADDTOP_3                            6920
        !           133: #define IDM_V_ADDTOP_4                            6930
        !           134: 
        !           135: 
        !           136: #define IDM_FB_EDIT                    7000
        !           137: #define IDM_FB_CANCEL                  7005
        !           138: #define IDM_F2                         7010
        !           139: 
        !           140: 
        !           141: #define IDD_LINELISTBOX                101
        !           142: #define IDD_EDIT                       102
        !           143: #define IDD_COMBO                      103
        !           144: #define IDD_DELETE                     104
        !           145: #define IDD_CLOSE                      105
        !           146: #define IDD_APPTEXT                    106
        !           147: #define IDD_FROM                       107
        !           148: #define IDD_TO                         108
        !           149: #define IDD_BITMAPLOCATION             109
        !           150: #define IDD_CHECK                      110
        !           151: #define IDD_TEXT                       111
        !           152: #define IDD_LIMIT                      112
        !           153: 
        !           154: 
        !           155: #define IDC_LINELIST                   201
        !           156: #define IDC_NAMETABLE                  202
        !           157: 
        !           158: 
        !           159: #define WM_U_INITFRAMETOOLS            WM_USER
        !           160: 
        !           161: #ifdef RC_INVOKED
        !           162: #include "debug.rc"
        !           163: #endif  /* RC_INVOKED */
        !           164: 
        !           165: #endif // _OUTLRC_H_
        !           166: 

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.