home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / debug / deb / deb.h < prev    next >
C/C++ Source or Header  |  1997-10-05  |  3KB  |  90 lines

  1.  
  2. /******************************************************************************\
  3. *       This is a part of the Microsoft Source Code Samples. 
  4. *       Copyright (C) 1993-1997 Microsoft Corporation.
  5. *       All rights reserved. 
  6. *       This source code is only intended as a supplement to 
  7. *       Microsoft Development Tools and/or WinHelp documentation.
  8. *       See these sources for detailed information regarding the 
  9. *       Microsoft samples programs.
  10. \******************************************************************************/
  11.  
  12. #ifndef DEB_H
  13.  
  14. #define DEB_H
  15.  
  16.  //-- menu ids
  17.  #define IDM_FILE_OPEN               1101
  18.  #define IDM_FILE_ATTACH             1102
  19.  #define IDM_FILE_EXIT               1109
  20.  
  21.  #define IDM_EDIT_CUT                1201
  22.  #define IDM_EDIT_COPY               1202
  23.  #define IDM_EDIT_DELETE             1203
  24.  
  25.  #define IDM_OPTIONS_FONT            1701
  26.  #define IDM_OPTIONS_PREFERENCES     1702
  27.  #define IDM_OPTIONS_TOOLBAR         1703
  28.  #define IDM_OPTIONS_SAVEDDIR        1704
  29.  #define IDM_OPTIONS_COLOR           1705
  30.  #define IDM_OPTIONS_SAVEONEXIT      1798
  31.  #define IDM_OPTIONS_SAVENOW         1799
  32.  
  33.  #define IDM_HELP_CONTENTS           1901
  34.  #define IDM_HELP_SEARCH             1902
  35.  #define IDM_HELP_HOWTOUSE           1903
  36.  #define IDM_HELP_ABOUT              1909
  37.  
  38.  //-- string ids
  39.  #define IDS_APPNAME                 2000
  40.  #define IDS_SHORT_APPNAME           2001
  41.  
  42.  #define IDS_OFN_TITLE               2010
  43.  #define IDS_OFN_FILTERNAME          2011
  44.  #define IDS_OFN_FILTER              2012
  45.  #define IDS_OFN_DEBUGGEE_TITLE      2013
  46.  
  47.  #define IDS_BUTTON_OPEN             2020
  48.  #define IDS_BUTTON_ATTACH           2021
  49.  #define IDS_BUTTON_CUT              2022
  50.  #define IDS_BUTTON_COPY             2023
  51.  #define IDS_BUTTON_DELETE           2024
  52.  #define IDS_BUTTON_HELP             2025
  53.  
  54.  #define IDS_EXIT_BOX_TITLE          2030
  55.  #define IDS_EXIT_BOX_TEXT           2031
  56.  
  57.  #define IDS_DEBUG_EVENTS            2040
  58.  
  59.  #define IDS_API_FAILED_MSG             9001
  60.  #define IDS_WINDOWS_NT_REQUIRED_TITLE  9998
  61.  #define IDS_WINDOWS_NT_REQUIRED        9999
  62.  
  63.  //-- control ids
  64.  #define IDC_INITIALDIR              9001
  65.  #define IDC_PROCESSLIST             9002
  66.  #define IDC_DEBUG_ONLY_THIS_PROCESS 9003
  67.  #define IDC_DEBUG_PROCESS           9004
  68.  #define IDC_IDLE_PRIORITY_CLASS     9005
  69.  #define IDC_NORMAL_PRIORITY_CLASS   9006
  70.  #define IDC_HIGH_PRIORITY_CLASS     9007
  71.  #define IDC_REALTIME_PRIORITY_CLASS 9008
  72.  #define IDC_CLEAR_ON_NEW            9009
  73.  #define IDC_VERBOSE                 9010
  74.  #define IDC_SHOW_SYMBOLS            9011
  75.  #define IDC_DEBUG_MODE_NONE         9020
  76.  #define IDC_DEBUG_MODE_ERROR        9021
  77.  #define IDC_DEBUG_MODE_MINORERROR   9022
  78.  #define IDC_DEBUG_MODE_WARNING      9023
  79.  #define IDC_SAVE_PREFERENCES        9999
  80.  
  81. // now defined in winuser.h ... #define IDHELP  9
  82.  
  83.  //-- user messages
  84.  #ifndef WM_APP
  85.   #define WM_APP 0x8000
  86.  #endif
  87.  #define UM_CREATE_LISTBOX (WM_APP+0)
  88.  
  89. #endif // DEB_H
  90.