20 lines
302 B
C
20 lines
302 B
C
#ifndef _CLASS_H_
|
|
#define _CLASS_H_
|
|
|
|
#include <fx/error.h>
|
|
#include <fx/misc.h>
|
|
#include <stdint.h>
|
|
|
|
struct fx_type_info;
|
|
|
|
struct _fx_class {
|
|
uint64_t c_magic;
|
|
const struct fx_type_info *c_type;
|
|
};
|
|
|
|
extern fx_result fx_class_instantiate(
|
|
struct fx_type_info *type,
|
|
struct _fx_class **out);
|
|
|
|
#endif
|