Blender
V3.3
|
Go to the source code of this file.
Functions | |
int | MEM_RefCountedGetRef (MEM_TRefCountedObjectPtr shared) |
int | MEM_RefCountedIncRef (MEM_TRefCountedObjectPtr shared) |
int | MEM_RefCountedDecRef (MEM_TRefCountedObjectPtr shared) |
int MEM_RefCountedDecRef | ( | MEM_TRefCountedObjectPtr | shared | ) |
Decreases the reference count of this object. If the reference count reaches zero, the object self-destructs.
shared | The object to query. |
Definition at line 21 of file MEM_RefCountedC-Api.cpp.
int MEM_RefCountedGetRef | ( | MEM_TRefCountedObjectPtr | shared | ) |
Returns the reference count of this object.
shared | The object to query. |
Definition at line 11 of file MEM_RefCountedC-Api.cpp.
int MEM_RefCountedIncRef | ( | MEM_TRefCountedObjectPtr | shared | ) |
Increases the reference count of this object.
shared | The object to query. |
Definition at line 16 of file MEM_RefCountedC-Api.cpp.