blob: e91dcab848e23552ed6cea372d500c13fd8c98e1 (
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
|
// MIT License, Copyright (c) 2020 Marvin Borner
#include <assert.h>
#include <def.h>
#include <sys.h>
u32 (*event_table[])() = { [EVENT_KEYBOARD] = NULL, [EVENT_MOUSE] = NULL };
u32 event_map(enum event id, u32 (*function)())
{
printf("%x to %x\n", id, function);
if (id >= sizeof(event_table) / sizeof(*event_table))
return -1;
event_table[id] = function;
return 0;
}
u32 event_trigger(enum event id, u32 *data)
{
assert(id < sizeof(event_table) / sizeof(*event_table));
u32 (*location)(u32 *) = event_table[id];
if (!location) {
printf("Event %d not mapped!\n", id);
return -1;
}
// TODO: Execute event function in ring3 with process stack, ...
location(data);
return 0;
}
|