You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
35 lines
650 B
C++
35 lines
650 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "UnsyncCommon.h"
|
|
#include "UnsyncCore.h"
|
|
#include "UnsyncRemote.h"
|
|
|
|
namespace unsync {
|
|
|
|
struct FCmdSyncOptions
|
|
{
|
|
FAlgorithmOptions Algorithm;
|
|
|
|
FPath Source;
|
|
FPath Target;
|
|
FPath SourceManifestOverride;
|
|
|
|
FRemoteDesc Remote;
|
|
|
|
bool bQuickDifference = false;
|
|
bool bQuickSourceValidation = false;
|
|
bool bCleanup = false;
|
|
|
|
bool bValidateTargetFiles = true; // WARNING: turning this off is intended only for testing/profiling
|
|
|
|
uint32 BlockSize = uint32(64_KB);
|
|
|
|
FSyncFilter* Filter = nullptr;
|
|
};
|
|
|
|
int32 CmdSync(const FCmdSyncOptions& Options);
|
|
|
|
} // namespace unsync
|