Files
firestorm/build-env/VisualStudio6/VC98/Include/ObjModel/DBGDEFS.H
T
Cyd 2b8ca921cb Initial full mirror of c:\VWE (source + assets + toolchain + outputs) via Git LFS
Complete disaster-recovery snapshot: engine/game source, game data assets,
VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive.
Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false,
no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
2026-06-24 21:28:16 -05:00

56 lines
1.3 KiB
C++

// Microsoft Visual Studio Object Model
// Copyright (C) 1996-1997 Microsoft Corporation
// All rights reserved.
/////////////////////////////////////////////////////////////////////////////
// dbgdefs.h
// Declaration of constants and error IDs used by objects in the type library
// VISUAL STUDIO 97 DEBUGGER (SharedIDE\bin\ide\devdbg.pkg)
#ifndef __DBGDEFS_H
#define __DBGDEFS_H
///////////////////////////////////////////////////////////////////////
// Enumerations used by Automation Methods
// Debuggee's execution state
enum DsExecutionState
{
dsNoDebugee,
dsBreak,
dsRunning,
};
enum DsBreakpointType
{
dsLocation,
dsLocationWithTrueExpression,
dsLocationWithChangedExpression,
dsTrueExpression,
dsChangedExpression,
dsMessage,
};
///////////////////////////////////////////////////////////////////////
// Error constants returned by Automation Methods.
// the user tried to set text of a column selection
#define DS_E_DBG_PKG_RELEASED 0x8004D001
// a breakpoint was already removed
#define DS_E_BP_REMOVED 0x8004D002
// can't evaluate this expression
#define DS_E_DBG_CANT_EVAL 0x8004D003
// can't set IP to this line
#define DS_E_DBG_SET_IP 0x8004D004
// this command is invalid if debuggee is running
#define DS_E_DBG_RUNNING 0x8004D005
#endif // __DBGDEFS_H