You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
23 lines
365 B
C++
23 lines
365 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
DECLARE_LOG_CATEGORY_EXTERN(LogUninstallHelper, Log, All);
|
|
|
|
namespace UninstallHelper
|
|
{
|
|
enum class EReturnCode : int32
|
|
{
|
|
Success = 0,
|
|
UnknownError,
|
|
ArgumentError,
|
|
UnknownAppName,
|
|
InvalidInstallDir,
|
|
ExecActionFailed,
|
|
DiskOperationFailed,
|
|
|
|
Crash = 255
|
|
};
|
|
} |