meta: rename to fx
This commit is contained in:
@@ -1,19 +1,19 @@
|
||||
#ifndef _OBJECT_H_
|
||||
#define _OBJECT_H_
|
||||
|
||||
#include <blue/core/error.h>
|
||||
#include <blue/core/misc.h>
|
||||
#include <fx/core/error.h>
|
||||
#include <fx/core/misc.h>
|
||||
#include <stdint.h>
|
||||
|
||||
struct b_type_registration;
|
||||
struct fx_type_registration;
|
||||
|
||||
struct _b_object {
|
||||
struct _fx_object {
|
||||
uint64_t obj_magic;
|
||||
const struct b_type_registration *obj_type;
|
||||
const struct fx_type_registration *obj_type;
|
||||
unsigned int obj_ref, obj_main_priv_offset;
|
||||
};
|
||||
|
||||
extern b_result b_object_instantiate(
|
||||
struct b_type_registration *type, struct _b_object **out);
|
||||
extern fx_result fx_object_instantiate(
|
||||
struct fx_type_registration *type, struct _fx_object **out);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user