xboxlive_matchmaking_stop

This function can be used to end a matchmaking session for the given user.

 

Syntax:

xboxlive_matchmaking_stop(user_id);

ArgumentTypeDescription
user_idXbox User IDThe user ID pointer to use

 

Returns:

N/A

 

Example:

if !xboxlive_user_is_signed_in(user_id[0])
{
    xboxlive_matchmaking_stop(user_id[0]);
}

The above code will end the matchmaking session for the given user.