1#ifndef _C_INDIRECT_REFERENCE_OBJECT_H
2#define _C_INDIRECT_REFERENCE_OBJECT_H
This file contains macro declarations for importing and exporting symbols from library boundaries.
This file contains all type forward declarations returned by the library API.
This file contains types and constants used as parameters or return values.
Represents reference to another object.
error_type CALLING_CONVENTION IndirectReferenceObject_GetReferencedObjectNumber(IndirectReferenceObjectHandle *handle, biguint_type *result)
Return object number of referenced object.
error_type CALLING_CONVENTION IndirectReferenceObject_Create(IndirectReferenceObjectHandle **result)
Creates a new IndirectReferenceObject instance.
error_type CALLING_CONVENTION IndirectReferenceObject_SetReferencedObject(IndirectReferenceObjectHandle *handle, ObjectHandle *value)
Sets a new referenced object.
error_type CALLING_CONVENTION IndirectReferenceObject_GetReferencedObject(IndirectReferenceObjectHandle *handle, ObjectHandle **result)
Return object handle to referenced object.
error_type CALLING_CONVENTION IndirectReferenceObject_Release(IndirectReferenceObjectHandle *handle)
Decrement the internal reference counter.
error_type CALLING_CONVENTION IndirectReferenceObject_GetReferencedGenerationNumber(IndirectReferenceObjectHandle *handle, ushort_type *result)
Return generation number of referenced object.
error_type CALLING_CONVENTION IndirectReferenceObject_FromObject(ObjectHandle *handle, IndirectReferenceObjectHandle **result)
Convert ObjectHandle to IndirectReferenceObjectHandle.
error_type CALLING_CONVENTION IndirectReferenceObject_ToObject(IndirectReferenceObjectHandle *handle, ObjectHandle **result)
Reinterpret current object as ObjectHandle.
Base class for syntactic tokens.
uint32_t error_type
This is return value type of all API functions.
Definition c_types.h:25
uint64_t biguint_type
64-bit unsigned integer type
Definition c_types.h:77
uint16_t ushort_type
16-bit unsigned integer
Definition c_types.h:46