Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.6 KiB

  1. //-----------------------------------------------------------------------------
  2. // File: D3DRes.h
  3. //
  4. // Desc: Resource definitions required by the CD3DApplication class.
  5. // Any application using the CD3DApplication class must include resources
  6. // with the following identifiers.
  7. //
  8. // Copyright (c) 1999 Microsoft Corporation. All rights reserved.
  9. //-----------------------------------------------------------------------------
  10. #ifndef D3DRES_H
  11. #define D3DRES_H
  12. #define IDI_MAIN_ICON 101 // Application icon
  13. #define IDR_MAIN_ACCEL 113 // Keyboard accelerator
  14. #define IDR_MENU 141 // Application menu
  15. #define IDR_POPUP 142 // Popup menu
  16. #define IDD_ABOUT 143 // About dialog box
  17. #define IDD_CHANGEDEVICE 144 // "Change Device" dialog box
  18. #define IDC_DEVICE_COMBO 1000 // Device combobox for "Change Device" dlg
  19. #define IDC_MODE_COMBO 1001 // Mode combobox for "Change Device" dlg
  20. #define IDC_WINDOWED_CHECKBOX 1012 // Checkbox for windowed-mode
  21. #define IDC_STEREO_CHECKBOX 1013 // Checkbox for stereo modes
  22. #define IDC_FULLSCREEN_TEXT 1014 // Group box text label
  23. #define IDM_ABOUT 40001 // Command to invoke About dlg
  24. #define IDM_CHANGEDEVICE 40002 // Command to invoke "Change Device" dlg
  25. #define IDM_TOGGLEFULLSCREEN 40003 // Command to toggle fullscreen mode
  26. #define IDM_TOGGLESTART 40004 // Command to toggle frame animation
  27. #define IDM_SINGLESTEP 40005 // Command to single step frame animation
  28. #define IDM_EXIT 40006 // Command to exit the application
  29. #endif // D3DRES_H