2019-01-17 18:54:05 -05:00
|
|
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2015-03-02 07:52:38 -05:00
|
|
|
#include "CrashDebugHelper.h"
|
|
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
class FCrashDebugHelperWindows : public ICrashDebugHelper
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* Parse the given crash dump, and generate a report.
|
|
|
|
|
*
|
|
|
|
|
* @param InCrashDumpName The crash dump file to process
|
|
|
|
|
*
|
|
|
|
|
* @return bool true if successful, false if not
|
|
|
|
|
*/
|
2014-06-13 06:14:46 -04:00
|
|
|
virtual bool CreateMinidumpDiagnosticReport( const FString& InCrashDumpName ) override;
|
2016-08-10 06:15:38 -04:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool InitSymbols(struct FWindowsPlatformStackWalkExt& WindowsStackWalkExt, bool bSyncSymbols);
|
|
|
|
|
void SyncAndReadSourceFile(bool bSyncSymbols, bool bAnnotate, int32 BuiltFromCL);
|
2014-03-14 14:13:41 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef FCrashDebugHelperWindows FCrashDebugHelper;
|