SCUI_Client_Release()
Decrements object's reference count, deletes the object if counter reaches 0.
Synopsis:
#include <scoreloop/scui_client.h>
void SCUI_Client_Release(SCUI_Client_h self)
Arguments:
- self
-
An opaque handle for the current SCUI_Client instance.
Library:
libscoreloopcoreDescription:
This method decrements the objects reference count. The object will be automatically deleted if the reference count reaches 0.
Note that this method is NULL pointer safe, i.e. NULL as an argument will not cause an exception.
Returns:
void