12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /*
- ===========================================================================
- Doom 3 GPL Source Code
- Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
- This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
- Doom 3 Source Code is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- Doom 3 Source Code is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
- In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
- If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
- ===========================================================================
- */
- #define IDD_DBG_FIND 2000
- #define IDD_DBG_QUICKWATCH 2001
- #define IDD_DBG_ABOUT 2002
- #define IDR_DBG_MAIN 2003
- #define IDR_DBG_ACCELERATORS 2004
- #define IDR_DBG_SCRIPT_POPUP 2005
- #define IDB_DBG_TOOLBAR 2006
- #define IDI_DBG_BREAKPOINT 2007
- #define IDI_DBG_CURRENTLINE 2008
- #define IDI_DBG_CURRENT 2009
- #define IDI_DBG_EMPTY 2010
- #define IDC_DBG_CLOSE 2200
- #define IDC_DBG_FILELIST 2201
- #define IDC_DBG_NAME 2202
- #define IDC_DBG_PATH 2203
- #define IDC_DBG_BACK 2204
- #define IDC_DBG_LOOKIN 2205
- #define IDC_DBG_RECALC 2206
- #define IDC_DBG_ADDWATCH 2207
- #define IDC_DBG_VARIABLE 2208
- #define IDC_DBG_CURVALUE 2209
- #define IDC_DBG_CURVALUE_STATIC 2210
- #define IDC_DBG_FIND 2211
- #define ID_DBG_FILE_MRU 22000
- #define ID_DBG_FILE_OPEN 22001
- #define ID_DBG_FILE_OPENSCRIPT 22002
- #define ID_DBG_FILE_EXIT 22003
- #define ID_DBG_WINDOW_CLOSEALL 22004
- #define ID_DBG_DEBUG_TOGGLEBREAKPOINT 22005
- #define ID_DBG_DEBUG_RUN 22006
- #define ID_DBG_DEBUG_BREAK 22007
- #define ID_DBG_FILE_NEXT 22008
- #define ID_DBG_DEBUG_STEPOVER 22009
- #define ID_DBG_FILE_CLOSE 22010
- #define ID_DBG_DEBUG_STEPINTO 22011
- #define ID_DBG_DEBUG_STEPOUT 22012
- #define ID_DBG_DEBUG_QUICKWATCH 22013
- #define ID_DBG_DEBUG_RUNTOCURSOR 22014
- #define ID_DBG_DEBUG_SHOWNEXTSTATEMENT 22015
- #define ID_DBG_EDIT_COPY 22016
- #define ID_DBG_EDIT_CUT 22017
- #define ID_DBG_EDIT_PASTE 22018
- #define ID_DBG_EDIT_FIND 22019
- #define ID_DBG_EDIT_FINDSELECTED 22020
- #define ID_DBG_EDIT_FINDNEXT 22021
- #define ID_DBG_EDIT_FINDPREV 22022
- #define ID_DBG_EDIT_FINDSELECTEDPREV 22023
- #define ID_DBG_HELP_ABOUT 22024
- // Next default values for new objects
- //
- #ifdef APSTUDIO_INVOKED
- #ifndef APSTUDIO_READONLY_SYMBOLS
- #define _APS_3D_CONTROLS 1
- #define _APS_NEXT_RESOURCE_VALUE 2011
- #define _APS_NEXT_COMMAND_VALUE 22025
- #define _APS_NEXT_CONTROL_VALUE 2212
- #define _APS_NEXT_SYMED_VALUE 2011
- #endif
- #endif
|