SC_User_Release()
Decrements the object's reference count, and deletes the object if the counter reaches 0.
Synopsis:
#include <scoreloop/sc_user.h>
void SC_User_Release(SC_User_h self)
Arguments:
- self
-
An opaque handle for the current SC_User instance.
Library:
libscoreloopcoreDescription:
This method decrements the reference count for the current SC_User instance. The current instance of SC_User will be deleted when the counter reaches 0.
Note that this method is NULL pointer safe. That is, NULL as an argument will not cause an exception.