-typedef struct {
- const char* name;
- int keysym;
-} name2keysym_t;
-static name2keysym_t name2keysym[]={
+
+#include "keymaps.h"
+
+static const name2keysym_t name2keysym[]={
/* ascii */
{ "space", 0x020},
{ "exclam", 0x021},
{"Pause", SDLK_PAUSE},
{"Escape", SDLK_ESCAPE},
-{0,0},
+{NULL, 0},
};