Files
UnrealEngineUWP/Engine/Source/Programs/CrashReportClient/Public/CrashReportClientApp.h
ben marsh 2b46ba7b94 Update copyright notices to 2019.
#rb none
#lockdown Nick.Penwarden

#ROBOMERGE-OWNER: ryan.gerleve
#ROBOMERGE-AUTHOR: ben.marsh
#ROBOMERGE-SOURCE: CL 4662404 in //UE4/Main/...
#ROBOMERGE-BOT: ENGINE (Main -> Dev-Networking)

[CL 4662413 by ben marsh in Dev-Networking branch]
2018-12-14 13:44:01 -05:00

28 lines
832 B
C

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
// FORCE_CRASH_REPORT_UNATTENDED can be added to target.cs or UBT commandline in order to set CRASH_REPORT_UNATTENDED_ONLY
// It should not be defined in code other than when undefined to please IntelliSense.
#ifndef FORCE_CRASH_REPORT_UNATTENDED
#define FORCE_CRASH_REPORT_UNATTENDED 0
#endif
#define CRASH_REPORT_UNATTENDED_ONLY FORCE_CRASH_REPORT_UNATTENDED
// Pre-compiled header includes
#include "CoreMinimal.h"
#include "Logging/LogMacros.h"
#if !CRASH_REPORT_UNATTENDED_ONLY
#include "StandaloneRenderer.h"
#endif // CRASH_REPORT_UNATTENDED_ONLY
#include "CrashReportClientConfig.h"
DECLARE_LOG_CATEGORY_EXTERN(CrashReportClientLog, Log, All)
/**
* Run the crash report client app
*/
void RunCrashReportClient(const TCHAR* Commandline);