1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef _LIBJOVE_OBJPATH_H #define _LIBJOVE_OBJPATH_H 1 #include <stddef.h> #include <stdint.h> #include <kernel/object.h> typedef struct KernelObjectTyped { void *parent; obj_type_t type; uint8_t membi; } KernelObjectTyped; #endif