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