Freigeben über


XblLeaderboardResultGetNextResult

Get the result for an XblLeaderboardResultGetNextAsync call.

Syntax

HRESULT XblLeaderboardResultGetNextResult(  
         XAsyncBlock* async,  
         size_t bufferSize,  
         void* buffer,  
         XblLeaderboardResult** ptrToBuffer,  
         size_t* bufferUsed  
)  

Parameters

async   _In_
Type: XAsyncBlock*

The AsyncBlock for this operation.

bufferSize   _In_
Type: size_t

The size of the provided buffer. Use XblLeaderboardResultGetNextResultSize to get the size required.

buffer   _Out_writes_bytes_to_(bufferSize,bufferUsed)
Type: void

A caller allocated byte buffer to write result into.

ptrToBuffer   _Outptr_
Type: XblLeaderboardResult**

Strongly typed pointer that points into buffer. Do not free this as its lifecycle is tied to buffer.

bufferUsed   _Out_opt_
Type: size_t*

Number of bytes written to the buffer.

Return value

Type: HRESULT

HRESULT return code for this API operation.

Requirements

Header: leaderboard_c.h

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

See also

leaderboard_c