1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef _LIBJOVE_OBJECT_MESSAGE_H #define _LIBJOVE_OBJECT_MESSAGE_H 1 #include <jove/object-typed.h> typedef struct _KernelObjectMessage { KernelObjectTyped typed; uint16_t pages; void *data; } KernelObjectMessage; #endif