Files
zach harris 166eb97912 Adding a program that can be used to delete the PersistentDownloadDir on Windows at uninstall time.
#rb james.doverspike

[CL 24831863 by zach harris in ue5-main branch]
2023-03-29 02:28:20 -04:00

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
};
}