core: class: add functions to get a registered class, and get the name of a class

This commit is contained in:
2025-10-28 15:11:54 +00:00
parent cd54a4f755
commit 5f2bbc7151
2 changed files with 17 additions and 0 deletions

View File

@@ -8,6 +8,8 @@
typedef struct _b_class b_class;
BLUE_API void *b_class_get(b_type id);
BLUE_API const char *b_class_get_name(const b_class *c);
BLUE_API void *b_class_get_interface(const b_class *c, b_type id);
#endif