--- mstools/samples/deb/deb.h 2018/08/09 18:20:39 1.1.1.1 +++ mstools/samples/deb/deb.h 2018/08/09 18:21:32 1.1.1.2 @@ -1,67 +1,77 @@ // ************************************************************************ -// HEADER : DEB.H -// PURPOSE : A Win32 Application that demonstrates the Debug APIs -// COMMENTS : !! I will document this better at a later date !! +// +// Microsoft Developer Support +// Copyright (c) 1992 Microsoft Corporation +// // ************************************************************************ +// HEADER : DEB.H +// PURPOSE : A Win32 Application that demonstrates the Win32 Debug APIs +// COMMENTS : +// ************************************************************************ +#ifndef DEB_H + + #define DEB_H + + //-- menu ids + #define IDM_FILE_OPEN 1101 + #define IDM_FILE_ATTACH 1102 + #define IDM_FILE_EXIT 1109 + + #define IDM_EDIT_CUT 1201 + #define IDM_EDIT_COPY 1202 + #define IDM_EDIT_DELETE 1203 + + #define IDM_OPTIONS_FONT 1701 + #define IDM_OPTIONS_PREFERENCES 1702 + #define IDM_OPTIONS_TOOLBAR 1703 + #define IDM_OPTIONS_SAVEONEXIT 1704 + #define IDM_OPTIONS_SAVEDDIR 1705 + #define IDM_OPTIONS_COLOR 1706 + + #define IDM_HELP_CONTENTS 1901 + #define IDM_HELP_SEARCH 1902 + #define IDM_HELP_HOWTOUSE 1903 + #define IDM_HELP_ABOUT 1909 + + //-- string ids + #define IDS_SHORT_APPTITLE 2000 + #define IDS_APPTITLE 2001 + + #define IDS_OFN_TITLE 2010 + #define IDS_OFN_FILTERNAME 2011 + #define IDS_OFN_FILTER 2012 + #define IDS_OFN_DEBUGEE_TITLE 2013 + + #define IDS_BUTTON_OPEN 2020 + #define IDS_BUTTON_ATTACH 2021 + #define IDS_BUTTON_CUT 2022 + #define IDS_BUTTON_COPY 2023 + #define IDS_BUTTON_DELETE 2024 + #define IDS_BUTTON_HELP 2025 + + #define IDS_EXIT_BOX_TITLE 2030 + #define IDS_EXIT_BOX_TEXT 2031 + + #define IDS_DEBUG_EVENTS 2040 + + //-- control ids + #define IDHELP 3 + #define IDC_INITIALDIR 9001 + #define IDC_PROCESSLIST 9002 + #define IDC_DEBUG_ONLY_THIS_PROCESS 9003 + #define IDC_DEBUG_PROCESS 9004 + #define IDC_IDLE_PRIORITY_CLASS 9005 + #define IDC_NORMAL_PRIORITY_CLASS 9006 + #define IDC_HIGH_PRIORITY_CLASS 9007 + #define IDC_CLEAR_ON_NEW 9008 + #define IDC_VERBOSE 9009 + #define IDC_SHOW_SYMBOLS 9010 + #define IDC_SAVE_PREFERENCES 9011 + + //-- user messages + #ifndef WM_APP + #define WM_APP 0x8000 + #endif + #define UM_CREATE_LISTBOX (WM_APP+0) -//-- menu ids -#define IDM_FILE_OPEN 1101 -#define IDM_FILE_ATTACH 1102 -#define IDM_FILE_EXIT 1109 - -#define IDM_EDIT_CUT 1201 -#define IDM_EDIT_COPY 1202 -#define IDM_EDIT_DELETE 1203 - -#define IDM_OPTIONS_FONT 1701 -#define IDM_OPTIONS_PREFERENCES 1702 -#define IDM_OPTIONS_TOOLBAR 1703 -#define IDM_OPTIONS_SAVEONEXIT 1704 -#define IDM_OPTIONS_SAVEDDIR 1705 -#define IDM_OPTIONS_COLOR 1706 - -#define IDM_HELP_CONTENTS 1901 -#define IDM_HELP_SEARCH 1902 -#define IDM_HELP_HOWTOUSE 1903 -#define IDM_HELP_ABOUT 1909 - -//-- string ids -#define IDS_SHORT_APPTITLE 2000 -#define IDS_APPTITLE 2001 - -#define IDS_OFN_TITLE 2010 -#define IDS_OFN_FILTERNAME 2011 -#define IDS_OFN_FILTER 2012 -#define IDS_OFN_DEBUGEE_TITLE 2013 - -#define IDS_BUTTON_OPEN 2020 -#define IDS_BUTTON_ATTACH 2021 -#define IDS_BUTTON_CUT 2022 -#define IDS_BUTTON_COPY 2023 -#define IDS_BUTTON_DELETE 2024 -#define IDS_BUTTON_HELP 2025 - -#define IDS_EXIT_BOX_TITLE 2030 -#define IDS_EXIT_BOX_TEXT 2031 - -#define IDS_DEBUG_EVENTS 2040 - -//-- control ids -#define IDHELP 3 -#define IDC_INITIALDIR 9001 -#define IDC_PROCESSLIST 9002 -#define IDC_DEBUG_ONLY_THIS_PROCESS 9003 -#define IDC_DEBUG_PROCESS 9004 -#define IDC_IDLE_PRIORITY_CLASS 9005 -#define IDC_NORMAL_PRIORITY_CLASS 9006 -#define IDC_HIGH_PRIORITY_CLASS 9007 -#define IDC_CLEAR_ON_NEW 9008 -#define IDC_VERBOSE 9009 -#define IDC_SHOW_SYMBOLS 9010 -#define IDC_SAVE_PREFERENCES 9011 - -//-- user messages -#ifndef WM_APP - #define WM_APP 0x8000 -#endif -#define UM_CREATE_LISTBOX (WM_APP+0) // user message to create the debug +#endif // DEB_H