Пример #1
0
void MiniDumpFunction( unsigned int nExceptionCode, EXCEPTION_POINTERS *pException )
{
    // You can build and set an arbitrary comment to embed in the minidump here,
    // maybe you want to put what level the user was playing, how many players on the server,
    // how much memory is free, etc...
    SteamAPI_SetMiniDumpComment( "Minidump comment: SteamworksExample.exe\n" );

    // The 0 here is a build ID, we don't set it
    SteamAPI_WriteMiniDump( nExceptionCode, pException, 0 );
}
Пример #2
0
SB_API void S_CALLTYPE SetMiniDumpComment(const char *pchMsg) {
	SteamAPI_SetMiniDumpComment(pchMsg);
}
Пример #3
0
void System_SetMiniDumpComment(const char *Msg){SteamAPI_SetMiniDumpComment(Msg);};