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.

44 lines
1.1 KiB

  1. #include <windows.h>
  2. #include "mcitest.h"
  3. #include "mcimain.h"
  4. #include "mcimain.dlg"
  5. IDI_MCITEST ICON mcitest.ico
  6. IDM_MCITEST MENU
  7. {
  8. POPUP "&File"
  9. {
  10. MENUITEM "&Open..." , MENU_OPEN
  11. MENUITEM "&Save" , MENU_SAVE
  12. MENUITEM "Save &As..." , MENU_SAVEAS
  13. MENUITEM SEPARATOR
  14. MENUITEM "&About..." , MENU_ABOUT
  15. MENUITEM "E&xit" , MENU_EXIT
  16. }
  17. POPUP "&Edit"
  18. {
  19. MENUITEM "&Undo\tAlt+Bksp", WM_UNDO
  20. MENUITEM "Cu&t\tShift+Del", WM_CUT
  21. MENUITEM "&Copy\tCtrl+Ins", WM_COPY
  22. MENUITEM "&Paste\tShift+Ins", WM_PASTE
  23. MENUITEM "C&lear\tDel", WM_CLEAR
  24. }
  25. MENUITEM "&Devices!", MENU_DEVICES
  26. #if DBG
  27. popup "&Debug"
  28. begin
  29. menuitem "Level 0" IDM_DEBUG0
  30. menuitem "Level 1" IDM_DEBUG1
  31. menuitem "Level 2" IDM_DEBUG2
  32. menuitem "Level 3" IDM_DEBUG3
  33. menuitem "Level 4" IDM_DEBUG4
  34. end
  35. #endif
  36. }
  37. IDA_MCITEST ACCELERATORS
  38. {
  39. VK_BACK, WM_UNDO, VIRTKEY, ALT
  40. }