diff options
Diffstat (limited to 'apps/wm.c')
-rw-r--r-- | apps/wm.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -7,6 +7,11 @@ #include <sys.h> #include <vesa.h> +void onkey() +{ + printf("KEY EVENT\n"); +} + void main(char **argv) { struct vbe *vbe = (struct vbe *)argv[0]; @@ -20,6 +25,9 @@ void main(char **argv) gui_init("/font/spleen-16x32.psfu"); gui_write(vbe, 50, 50, text, "hallo"); + printf("onkey: %x\n", onkey); + map(EVENT_KEYBOARD, onkey); + while (1) { }; exit(); |