Skip to content

rc_api_init_fetch_game_titles_request

Jamiras edited this page Jun 17, 2024 · 1 revision

Constructs an rc_api_request_t for fetching the titles and badge names for a list of games.

Syntax

int rc_api_init_fetch_game_titles_request(
    rc_api_request_t* request,
    const rc_api_fetch_game_titles_request_t* api_params
);

Parameters

request

The rc_api_request_t to construct.

api_params

Pointer to a rc_api_fetch_game_titles_request_t object containing the parameters for the fetch game titles request.


struct rc_api_fetch_game_titles_request_t
{
  const uint32_t* game_ids;
  uint32_t num_game_ids;
};

game_ids

An array of game IDs to query.

num_game_ids

The number of items in the game_ids array.

Return value

If the function succeeds, the return value is RC_OK. Otherwise, the error code can be converted to a string using rc_error_str.

  • RC_INVALID_STATE - one or more required parameters was not provided.
  • RC_OUT_OF_MEMORY - enough memory could not be allocated to complete the operation.

Remarks

The rc_api_request_t must be destroyed by rc_api_destroy_request after the HTTP request has been made.

Minimum version: 11.4.0

See also

rc_api_destroy_request

rc_api_process_fetch_game_titles_server_response

rc_api_destroy_fetch_game_titles_response

rcheevos

rc_client

Integration guide

client

user

game

processing

rc_client_raintegration

Integration guide

rc_runtime

rhash

rapi

common

user

runtime

info

Clone this wiki locally