mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-05 17:13:36 +08:00
31 lines
894 B
C
31 lines
894 B
C
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================//
|
|
|
|
#ifndef TOOLS_MINIDUMP_H
|
|
#define TOOLS_MINIDUMP_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
|
|
// Defaults to false. If true, it'll write larger minidump files with the contents
|
|
// of global variables and following pointers from where the crash occurred.
|
|
void EnableFullMinidumps( bool bFull );
|
|
|
|
|
|
// This handler catches any crash, writes a minidump, and runs the default system
|
|
// crash handler (which usually shows a dialog).
|
|
void SetupDefaultToolsMinidumpHandler();
|
|
|
|
|
|
// (Used by VMPI) - you specify your own crash handler.
|
|
typedef void (*ToolsExceptionHandler)( unsigned long exceptionCode );
|
|
void SetupToolsMinidumpHandler( ToolsExceptionHandler fn );
|
|
|
|
|
|
#endif // MINIDUMP_H
|