Files
UnrealEngineUWP/Engine/Source/Programs/BuildPatchTool/Public/BuildPatchTool.h
Alex Fennell d10f9953d9 Copying //UE4/Portal-Staging to //UE4/Dev-Main (Source: //UE4/Portal-Staging @ 3138637)
#lockdown Nick.Penwarden, justin.sargent
#rb None

[CL 3138769 by Alex Fennell in Main branch]
2016-09-23 17:31:51 -04:00

19 lines
319 B
C++

// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
#pragma once
DECLARE_LOG_CATEGORY_EXTERN(LogBuildPatchTool, Log, All);
namespace BuildPatchTool
{
enum class EReturnCode : int32
{
OK = 0,
UnknownError,
ArgumentProcessingError,
UnknownToolMode,
FileNotFound,
ToolFailure,
Crash = 255
};
}