Uninitialize the Vivox SDK
Learn how to properly uninitialize the Vivox SDK.
Read time 1 minuteLast updated 7 months ago
The game must uninitialize the Vivox SDK by calling before it exits the process or before it calls again. If this operation is called when a user is signed in, the method can block for up to two seconds while it cleans up network resources.
vx_uninitialize()vx_initialize3()The following code is an example of the uninitialization process:
. . .int status = vx_uninitialize();if (status != 0){ printf("vx_uninitialize() returned %d: %s\n", status,vx_get_error_string(status));}. . .