Uninitialize the Vivox SDK
Learn how to properly uninitialize the Vivox SDK.
阅读时间1 分钟最后更新于 12 天前
The game must uninitialize the Vivox SDK by calling
vx_uninitialize()vx_initialize3(). . .int status = vx_uninitialize();if (status != 0){ printf("vx_uninitialize() returned %d: %s\n", status,vx_get_error_string(status));}. . .