blender/intern/memutil/MEM_RefCountedC-Api.h

50 lines
1.3 KiB
C
Raw Normal View History

/* SPDX-FileCopyrightText: 2001-2002 NaN Holding BV. All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later */
2011-02-25 11:47:18 +00:00
/** \file
* \ingroup intern_memutil
*
2002-10-12 11:37:38 +00:00
* Interface for C access to functionality relating to shared objects in the foundation library.
*/
#ifndef __MEM_REFCOUNTEDC_API_H__
#define __MEM_REFCOUNTEDC_API_H__
2002-10-12 11:37:38 +00:00
/** A pointer to a private object. */
typedef struct MEM_TOpaqueObject *MEM_TObjectPtr;
2002-10-12 11:37:38 +00:00
/** A pointer to a shared object. */
typedef MEM_TObjectPtr MEM_TRefCountedObjectPtr;
#ifdef __cplusplus
extern "C" {
#endif
/**
2002-10-12 11:37:38 +00:00
* Returns the reference count of this object.
* \param shared: The object to query.
* \return The current reference count.
2002-10-12 11:37:38 +00:00
*/
extern int MEM_RefCountedGetRef(MEM_TRefCountedObjectPtr shared);
2002-10-12 11:37:38 +00:00
/**
2002-10-12 11:37:38 +00:00
* Increases the reference count of this object.
* \param shared: The object to query.
* \return The new reference count.
2002-10-12 11:37:38 +00:00
*/
extern int MEM_RefCountedIncRef(MEM_TRefCountedObjectPtr shared);
2002-10-12 11:37:38 +00:00
/**
2002-10-12 11:37:38 +00:00
* Decreases the reference count of this object.
2014-10-29 13:11:19 +00:00
* If the reference count reaches zero, the object self-destructs.
* \param shared: The object to query.
* \return The new reference count.
2002-10-12 11:37:38 +00:00
*/
extern int MEM_RefCountedDecRef(MEM_TRefCountedObjectPtr shared);
2002-10-12 11:37:38 +00:00
#ifdef __cplusplus
}
#endif
#endif // __MEM_REFCOUNTEDC_API_H__