aboutsummaryrefslogtreecommitdiff
path: root/desktop/grab.h
blob: 0fbd889dd1fc4225862c86dc2f3b6ec32a93ea97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef GRAB_H__
#define GRAB_H__

enum HotkeyEvent {
    HK_PREV,
    HK_NEXT,
    HK_PAUSE,
    HK_PLAY,
    HOTKEYS_COUNT
};
struct Hotkey {
    enum HotkeyEvent event;
    int keycode;
};

void grab_init();

#endif