axle OS
x86_32 UNIX-like hobby OS
src
kernel
util
kbman
kbman.h
1
#ifndef KBMAN_H
2
#define KBMAN_H
3
4
#include <stdbool.h>
5
#include <stdint.h>
6
7
#define KEY_UP 72
8
#define KEY_DOWN 80
9
#define KEY_LEFT 75
10
#define KEY_RIGHT 77
11
12
void
kbman_process(
char
c);
13
void
kbman_process_release(
char
c);
14
bool
key_down(
char
c);
15
16
#endif
Generated by
1.8.14