Share via


DUMPTYPE

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

Specifies how much of a program's state (such as running threads, stack frames, and current instruction address) to dump.

Syntax

enum enum_DUMPTYPE {   
   DUMP_MINIDUMP = 0,  
   DUMP_FULLDUMP = 1  
};  
typedef DWORD DUMPTYPE;  
public enum enum_DUMPTYPE {   
   DUMP_MINIDUMP = 0,  
   DUMP_FULLDUMP = 1  
};  

Members

DUMP_MINIDUMP
Specifies a small, compact dump.

DUMP_FULLDUMP
Specifies a large, complete dump.

Remarks

Passed as an argument to the WriteDump method.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See Also

Enumerations
WriteDump