blob: 53ffeb7201c979221ce7d3bf88350397fe4e04bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
typedef struct {
int normal[128];
int shift[128];
int caps[128];
int mod[128];
int shiftmod[128];
bool ralt_is_mod; // true: right alt = alt-gr
} keymap_t;
/* vim: set ts=4 sw=4 tw=0 noet :*/
|