Resource::Release
Defined in:
Releases a resource object.
C4Resources.h
Prototype
int32 Release(void);
Description
The Release
function releases a resource object that was previously created with the Resource::GetResource
function. The Release
function should be called to balance every call to the GetResource
function that does not return nullptr
.The return value is the new reference count for the resource object after is has been released.
See Also