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.

39 lines
1.3 KiB

  1. #define ID_DEBUG_OUT 100
  2. #define ID_DEBUG_MCI 200
  3. #define ID_DEBUG_MMSYS 201
  4. #define ID_HANDLES 300
  5. #define ID_RESTART 301
  6. #define DLG_MMSEX 400
  7. #ifdef RC_INVOKED
  8. DLG_MMSEX ICON MOVEABLE DISCARDABLE LOADONCALL MMSEX.ICO
  9. DLG_MMSEX DIALOG 39, 26, 205, 160
  10. STYLE DS_MODALFRAME | DS_NOIDLEMSG | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  11. CAPTION "MMSYSTEM"
  12. FONT 8, "MS Shell Dlg"
  13. BEGIN
  14. DEFPUSHBUTTON "Ok", IDOK, 155, 3, 40, 14
  15. PUSHBUTTON "Cancel", IDCANCEL, 155, 19, 40, 14
  16. PUSHBUTTON "&Restart", ID_RESTART, 155, 36, 40, 14
  17. LTEXT "&Handles", -1, 6, 46, 106, 8
  18. LISTBOX ID_HANDLES, 6, 58, 194, 98, LBS_NOINTEGRALHEIGHT |
  19. WS_VSCROLL | WS_TABSTOP
  20. LTEXT "Debug &Output:", -1, 7, 7, 54, 8
  21. COMBOBOX ID_DEBUG_OUT, 63, 4, 77, 59, CBS_DROPDOWNLIST | WS_VSCROLL |
  22. WS_TABSTOP
  23. CONTROL "MM&SYS Debug", ID_DEBUG_MMSYS, "Button",
  24. BS_AUTOCHECKBOX | WS_TABSTOP, 6, 19, 81, 10
  25. CONTROL "&MCI debugging", ID_DEBUG_MCI, "Button",
  26. BS_AUTOCHECKBOX | WS_TABSTOP, 6, 32, 83, 10
  27. ICON DLG_MMSEX, -1, 91, 21, 18, 20
  28. END
  29. #endif