|
|
1.1 root 1: // **************************************************************************
2: // MODULE : DEB.rc
3: // PURPOSE : A Win32 Application that demonstrates the Win32 debug APIs
4: // COMMENTS :
5: // **************************************************************************
6: #include <Windows.H>
7: #include "DEB.H" // contains the IDs
8: #include "DEB.Dlg" // contains the dialog boxes
9:
10: DebugIcon ICON DEB.Ico
11:
12:
13: DebugMenu MENU
14: BEGIN
15:
16: POPUP "&File"
17: BEGIN
18: MENUITEM "&Open...\tCtrl+F12", IDM_FILE_OPEN
19: MENUITEM "&Attach...", IDM_FILE_ATTACH
20: MENUITEM SEPARATOR
21: MENUITEM "E&xit\tAlt+F4", IDM_FILE_EXIT
22: END
23:
24: POPUP "&Edit"
25: BEGIN
26: MENUITEM "Cu&t\tCtrl+X", IDM_EDIT_CUT
27: MENUITEM "&Copy\tCtrl+C",IDM_EDIT_COPY
28: MENUITEM "&Delete\tDel", IDM_EDIT_DELETE
29: END
30:
31: POPUP "&Options"
32: BEGIN
33: MENUITEM "&Font...", IDM_OPTIONS_FONT
34: MENUITEM "Background &Color...", IDM_OPTIONS_COLOR
35: MENUITEM "&Preferences...", IDM_OPTIONS_PREFERENCES
36: MENUITEM SEPARATOR
37: MENUITEM "&Tool Bar", IDM_OPTIONS_TOOLBAR
38: MENUITEM "Use Saved &Directory", IDM_OPTIONS_SAVEDDIR
39: MENUITEM "Save Settings on E&xit", IDM_OPTIONS_SAVEONEXIT
40: END
41:
42: POPUP "&Help"
43: BEGIN
44: MENUITEM "&Contents", IDM_HELP_CONTENTS
45: MENUITEM "&Search for Help On...", IDM_HELP_SEARCH
46: MENUITEM "&How to Use Help", IDM_HELP_HOWTOUSE
47: MENUITEM SEPARATOR
48: MENUITEM "&About DEB...", IDM_HELP_ABOUT
49: END
50:
51: END
52:
53:
54: DebugAccel ACCELERATORS
55: BEGIN
56: VK_F12, IDM_FILE_OPEN, VIRTKEY, CONTROL
57: VK_F4, IDM_FILE_EXIT, VIRTKEY, ALT
58: "X", IDM_EDIT_CUT, VIRTKEY, CONTROL
59: "C", IDM_EDIT_COPY, VIRTKEY, CONTROL
60: VK_DELETE, IDM_EDIT_CUT, VIRTKEY, SHIFT
61: VK_INSERT, IDM_EDIT_COPY, VIRTKEY, CONTROL
62: VK_DELETE, IDM_EDIT_DELETE, VIRTKEY
63: VK_F1, IDM_HELP_CONTENTS, VIRTKEY
64: END
65:
66:
67: STRINGTABLE
68: BEGIN
69: IDS_APPTITLE, "Debug Event Browser"
70: IDS_SHORT_APPTITLE, "DEB"
71: IDS_DEBUG_EVENTS, "Debug Events"
72: IDS_OFN_TITLE, "Select an Executable"
73: IDS_OFN_DEBUGEE_TITLE, "Debug Event Browser - Debugee"
74: IDS_OFN_FILTERNAME, "Executable Files(*.EXE)"
75: IDS_OFN_FILTER, "*.EXE"
76: IDS_BUTTON_OPEN, "Open"
77: IDS_BUTTON_ATTACH, "Attach"
78: IDS_BUTTON_CUT, "Cut"
79: IDS_BUTTON_COPY, "Copy"
80: IDS_BUTTON_DELETE, "Delete"
81: IDS_BUTTON_HELP, "Help"
82: IDS_EXIT_BOX_TITLE, "Exit the Debug Event Browser"
83: IDS_EXIT_BOX_TEXT, "Some Debugee processes are still active.\nDo you want to Exit anyway?"
84: END
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.