XblLocalStorageReadComplete

Completes a local storage read operation. XblLocalStorageReadHandler

Syntax

HRESULT XblLocalStorageReadComplete(  
         XblClientOperationHandle operation,  
         XblClientOperationResult result,  
         size_t dataSize,  
         void data  
)  

Parameters

operation   _In_
Type: XblClientOperationHandle

The handle for this operation.

result   _In_
Type: XblClientOperationResult

The result of the operation.

dataSize   _In_
Type: size_t

The size (in bytes) of the data.

data   _In_reads_bytes_opt_(dataSize)
Type: void

The data read.

Return value

Type: HRESULT

HRESULT return code for this API operation.

Remarks

Should only be called by clients after completing (or failing to complete) a requested read operation. If the requested key cannot be found, the operation should be completed with XblClientOperationResult::Success and dataSize of 0.

Requirements

Header: platform_c.h

Library: Microsoft.Xbox.Services.141.GSDK.C.lib

See also

platform_c