summaryrefslogtreecommitdiffstats
path: root/lib/libjove/include/object-dir.h
blob: f2580895a578984e49167f09286ebcdcbaf0732d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _LIBJOVE_OBJDIR_H
#define _LIBJOVE_OBJDIR_H 1

#include <stdint.h>
#include <stddef.h>
#include <kernel/object.h>

#include <jove/object-typed.h>

/**@STRUCT Represents a kobjdir.*/
typedef struct _KernelObjectDirectory {
    KernelObjectTyped typed;
    KernelObjectTyped *children[256];
} KernelObjectDirectory;
extern KernelObjectDirectory __rootdir;

#endif