You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
898 B

// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.PlayerDataStorage
{
/// <summary>
/// Return results for <see cref="OnWriteFileDataCallback" /> callbacks to return
/// </summary>
public enum WriteResult : int
{
/// <summary>
/// Signifies the data was written successfully, and we should write the data the file
/// </summary>
ContinueWriting = 1,
/// <summary>
/// Signifies all data has now been written successfully, and we should upload the data to the cloud
/// </summary>
CompleteRequest = 2,
/// <summary>
/// Signifies there was a failure writing the data, and the request should end
/// </summary>
FailRequest = 3,
/// <summary>
/// Signifies the request should be canceled, but not due to an error
/// </summary>
CancelRequest = 4
}
}