]> Dogcows Code - chaz/openbox/blob - plugins/keyboard/keyboard.c
3e621849921784562cb57c14c2b98ef104a44684
[chaz/openbox] / plugins / keyboard / keyboard.c
1 #include "../../kernel/dispatch.h"
2
3 static void press(ObEvent *e, void *foo)
4 {
5 }
6
7 void plugin_startup()
8 {
9 dispatch_register(Event_X_KeyPress, (EventHandler)press, NULL);
10
11 /* XXX parse config file! */
12 }
13
14 void plugin_shutdown()
15 {
16 dispatch_register(0, (EventHandler)press, NULL);
17 }
18
This page took 0.035062 seconds and 4 git commands to generate.