meta: rename core module to fx namespace

This commit is contained in:
2026-05-02 14:36:59 +01:00
parent b072632499
commit 7db5fefe25
69 changed files with 0 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef _CLASS_H_
#define _CLASS_H_
#include <fx/core/error.h>
#include <fx/core/misc.h>
#include <stdint.h>
struct fx_type_registration;
struct _fx_class {
uint64_t c_magic;
const struct fx_type_registration *c_type;
};
extern fx_result fx_class_instantiate(
struct fx_type_registration *type, struct _fx_class **out);
#endif