Files
UnrealEngineUWP/Engine/Source/Developer/CrashDebugHelper/Private/Windows/CrashDebugHelperWindows.h
Stefan Boberg d2f9a61b06 Copy-up from Dev-Core
#rb none

[CL 10419044 by Stefan Boberg in Main branch]
2019-11-25 12:03:09 -05:00

21 lines
506 B
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CrashDebugHelper.h"
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
*/
virtual bool CreateMinidumpDiagnosticReport( const FString& InCrashDumpName ) override;
};
typedef FCrashDebugHelperWindows FCrashDebugHelper;