]>
Commit | Line | Data |
---|---|---|
f1584bb0 JW |
1 | /* keyboard.h |
2 | * Keyboard injection definitions | |
3 | * NetWatch system management mode administration console | |
4 | * | |
5 | * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. | |
6 | * This program is free software; you can redistribute and/or modify it under | |
7 | * the terms found in the file LICENSE in the root of this source tree. | |
8 | * | |
9 | */ | |
10 | ||
e7804391 JW |
11 | #ifndef KEYBOARD_H |
12 | #define KEYBOARD_H | |
13 | ||
91cc1340 JP |
14 | #include <stdint.h> |
15 | ||
16 | void kbd_inject_keysym(uint32_t k, int downflag); | |
e7804391 JW |
17 | |
18 | unsigned char kbd_get_injected_scancode(); | |
19 | int kbd_has_injected_scancode(); | |
20 | ||
21 | extern int kbd_mode; | |
22 | ||
23 | #endif |