0001: //-----------------------------------------------------------------------------
0002: // File: D3DRes.h
0003: //
0004: // Desc: Resource definitions required by the CD3DApplication class.
0005: //       Any application using the CD3DApplication class must include resources
0006: //       with the following identifiers.
0007: //-----------------------------------------------------------------------------
0008: #ifndef D3DRES_H
0009: #define D3DRES_H
0010: 
0011: 
0012: #define IDI_MAIN_ICON          101 // Application icon
0013: #define IDR_MAIN_ACCEL         113 // Keyboard accelerator
0014: #define IDR_MENU               141 // Application menu
0015: #define IDR_POPUP              142 // Popup menu
0016: #define IDD_SELECTDEVICE       144 // "Change Device" dialog box
0017: 
0018: #define IDC_ADAPTER_COMBO         1002 // Adapter combobox for "SelectDevice" dlg
0019: #define IDC_DEVICE_COMBO          1000 // Device combobox for "SelectDevice" dlg
0020: #define IDC_FULLSCREENMODES_COMBO 1003 // Mode combobox for "SelectDevice" dlg
0021: #define IDC_MULTISAMPLE_COMBO     1005 // MultiSample combobox for "SelectDevice" dlg
0022: #define IDC_WINDOW                1016 // Radio button for windowed-mode
0023: #define IDC_FULLSCREEN            1018 // Radio button for fullscreen-mode
0024: 
0025: #define IDM_CHANGEDEVICE     40002 // Command to invoke "Change Device" dlg
0026: #define IDM_TOGGLEFULLSCREEN 40003 // Command to toggle fullscreen mode
0027: #define IDM_EXIT             40006 // Command to exit the application
0028: 
0029: 
0030: #endif // D3DRES_H
0031: