summaryrefslogtreecommitdiffstats
path: root/lib/libjove/include/object-typed.h
blob: 750cf08c32038023a94873df6a6e221c300805b9 (plain) (blame)
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