OurOS 0.1
Operating System built by McGill Students
 
Loading...
Searching...
No Matches
keymap_us.h
1#ifndef _SYS_KEYMAP_US_H
2#define _SYS_KEYMAP_US_H
3
4#include "keyboard.h"
5#include "keycode.h"
6#include "keymap.h"
7
8char keymap_translate_us(enum KEYCODE code, struct keyboard_state *state);
9
10extern struct keymap keymap_us;
11
12#endif
kernel generic keyboard interface
struct to hold state of the keyboard in terms of modifier keys
Definition keyboard.h:14