SC_Client_CreateUserController()
Creates a user controller, which can be used to retrieve information about an arbitrary user from the server.
Synopsis:
#include <scoreloop/sc_client.h>
SC_Error_t SC_Client_CreateUserController(SC_Client_h self, SC_UserController_h *pUserController, SC_RequestControllerCompletionCallback_t callback, void *cookie)
Arguments:
- self
-
Opaque handle for the current client instance.
- pUserController
-
Opaque handle for the controller that will be created.
- callback
-
Handle to be registered for callback
- cookie
-
This will be passed back to the controller's callback and using this, users can use the same callback for multiple controllers if they wish to.
Library:
libscoreloopcoreDescription:
This method creates an instance of SC_UserController. The controller is used to retrieve the information about an arbitrary user from the Scoreloop servers
Returns:
SC_Error_t A return code (A value of SC_OK indicates success, any other value indicates an error).