aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/event.h
blob: f4025b4026a6dd5c47b0fa016a0df8fca4fda78a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// MIT License, Copyright (c) 2020 Marvin Borner

#ifndef EVENT_H
#define EVENT_H

#include <def.h>
#include <sys.h>

u32 event_map(enum event id, u32 (*function)());
u32 event_trigger(enum event id, u32 *data);

#endif