summaryrefslogtreecommitdiff
path: root/plugins/keyboard/keyboard.c
blob: 3e621849921784562cb57c14c2b98ef104a44684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "../../kernel/dispatch.h"

static void press(ObEvent *e, void *foo)
{
}

void plugin_startup()
{
    dispatch_register(Event_X_KeyPress, (EventHandler)press, NULL);

    /* XXX parse config file! */
}

void plugin_shutdown()
{
    dispatch_register(0, (EventHandler)press, NULL);
}