// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.TitleStorage { /// /// Return results for callbacks /// public enum ReadResult : int { /// /// Signifies the data was read successfully, and we should continue to the next chunk if possible /// RrContinuereading = 1, /// /// Signifies there was a failure reading the data, and the request should end /// RrFailrequest = 2, /// /// Signifies the request should be canceled, but not due to an error /// RrCancelrequest = 3 } }