/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following definitions.
- DVM_FALSE
- DVM_TRUE
- DVM_Boolean
- DVM_Value
#ifndef PUBLIC_DVM_H_INCLUDED
#define PUBLIC_DVM_H_INCLUDED
typedef struct DVM_Excecutable_tag DVM_Executable;
typedef struct DVM_VirtualMachine_tag DVM_VirtualMachine;
typedef struct DVM_Object_tag DVM_Object;
typedef struct DVM_String_tag DVM_String;
typedef enum {
DVM_FALSE = 0,
DVM_TRUE = 1
} DVM_Boolean;
typedef union {
int int_value;
double double_value;
DVM_Object *object;
int function_index;
} DVM_Value;
DVM_VirtualMachine *DVM_create_virtual_machine(void);
void DVM_add_executable(DVM_VirtualMachine *dvm, DVM_Executable *executable);
DVM_Value DVM_execute(DVM_VirtualMachine *dvm);
void DVM_dispose_virtual_machine(DVM_VirtualMachine *dvm);
#endif /* PUBLIC_DVM_CODE_H_INCLUDED */