blob: 281b14701b8a41380613e139f9e19f2e6a3fd3f8 (
plain) (
tree)
|
|
#pragma once
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
typedef struct {
int normal[128];
int shift[128];
int caps[128];
int shiftcaps[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 :*/
|