Play Games Services Recall

Native API for Play Games Services Recall.

Summary

Typedefs

PgsRecallClient_RequestRecallAccessCallback)(PgsStatusCode status_code, const char *session_id, void *user_data) typedef
void(*
Callback for the requestRecallAccess operation.

Functions

PgsRecallClient_requestRecallAccess(PgsRecallClient *client, PgsRecallClient_RequestRecallAccessCallback callback, void *user_data)
void
Requests a recall access token.

Typedefs

PgsRecallClient_RequestRecallAccessCallback

void(*PgsRecallClient_RequestRecallAccessCallback)(PgsStatusCodestatus_code,constchar*session_id,void*user_data)

Callback for the requestRecallAccess operation.

Details
Parameters
status_code
The result of the operation. PGS_STATUS_SUCCESS on success.
session_id
The recall session ID, or NULL if an error occurred. The caller is responsible for freeing this string using free().
user_data
User-provided data passed to the original function call.

Functions

PgsRecallClient_requestRecallAccess

voidPgsRecallClient_requestRecallAccess(
PgsRecallClient *client,
PgsRecallClient_RequestRecallAccessCallback callback,
void*user_data
)

Requests a recall access token.

This function is asynchronous. The result will be provided in the PgsRecallClient_RequestRecallAccessCallback.

Details
Parameters
client
The Recall Client instance.
callback
The callback to invoke with the result.
user_data
Arbitrary data to be passed to the callback.

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2026年01月16日 UTC.