API reference
API reference
Select your platform
No SDKs available
No versions available

ovr_GroupPresence_LaunchRejoinDialog Function

Launch the dialog allowing users to rejoin a previous lobby or match. Either the user’s ovr_GroupPresenceOptions_SetLobbySessionId(), their ovr_GroupPresenceOptions_SetMatchSessionId(), or both must be populated as valid rejoinable destinations. Check the Rejoin documentation for use cases and information on this feature. ovrMessage_GroupPresence_LaunchRejoinDialog will be generated in response.
First call ovr_Message_IsError() to check if an error occurred.
If no error occurred, the message will contain a payload of type ovrRejoinDialogResultHandle. Extract the payload from the message handle with ovr_Message_GetRejoinDialogResult().

Signature

ovrRequest ovr_GroupPresence_LaunchRejoinDialog(const char *lobby_session_id, const char *match_session_id, const char *destination_api_name)

Parameters

lobby_session_id: const char * The unique identifier of the lobby session to rejoin.
match_session_id: const char * The unique identifier of the match session to rejoin.
destination_api_name: const char * The unique name of the in-app destination to rejoin.

Returns