1#ifndef _C_BOOLEAN_OBJECT_H
2#define _C_BOOLEAN_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.
Boolean objects represent the logical values of true and false.
error_type CALLING_CONVENTION BooleanObject_GetValue(BooleanObjectHandle *handle, boolean_type *result)
Return current boolean value.
error_type CALLING_CONVENTION BooleanObject_FromObject(ObjectHandle *handle, BooleanObjectHandle **result)
Convert ObjectHandle to BooleanObjectHandle.
error_type CALLING_CONVENTION BooleanObject_Create(BooleanObjectHandle **result)
Creates a new instance.
error_type CALLING_CONVENTION BooleanObject_Release(BooleanObjectHandle *handle)
Decrement the internal reference counter.
error_type CALLING_CONVENTION BooleanObject_ToObject(BooleanObjectHandle *handle, ObjectHandle **result)
Reinterpret current object as ObjectHandle.
error_type CALLING_CONVENTION BooleanObject_SetValue(BooleanObjectHandle *handle, boolean_type value)
Set new boolean value.
Base class for syntactic tokens.
uint32_t error_type
This is return value type of all API functions.
Definition c_types.h:25
int8_t boolean_type
Boolean type supported in C.
Definition c_types.h:31