core: add new enhanced object module

This commit is contained in:
2025-08-16 16:03:55 +01:00
parent 3f2558cac3
commit c65541ac62
15 changed files with 1684 additions and 1 deletions

19
object/object.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef _OBJECT_H_
#define _OBJECT_H_
#include <blue/core/error.h>
#include <blue/core/misc.h>
#include <stdint.h>
struct b_type_registration;
struct _b_object {
uint64_t obj_magic;
const struct b_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);
#endif