blob: e120b70f95609b4b718cecbb9a353abc9c18f757 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// MIT License, Copyright (c) 2021 Marvin Borner
#ifndef MSG_H
#define MSG_H
#include <def.h>
#define MSG_MAGIC 0x42042069
struct message {
u32 magic;
int src;
int type;
void *data;
};
enum message_type {
// GFX
GFX_NEW_CONTEXT,
GFX_REDRAW,
GFX_REDRAW_FOCUSED,
// GUI
GUI_KILL,
GUI_KEYBOARD,
GUI_MOUSE,
GUI_RESIZE,
GUI_MAX
};
int msg_send(u32 pid, enum message_type, void *data);
int msg_receive(struct message *msg);
#endif
|