1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <keymap.h>
#include "libcommon.h"
int
main(int argc KBD_ATTR_UNUSED, char **argv KBD_ATTR_UNUSED)
{
struct lk_ctx *ctx;
struct kmapinfo info;
ctx = lk_init();
lk_set_log_fn(ctx, NULL, NULL);
if (lk_add_map(ctx, 0) != 0)
kbd_error(EXIT_FAILURE, 0, "Unable to define map");
lk_get_kmapinfo(ctx, &info);
if (info.keymaps != 1)
kbd_error(EXIT_FAILURE, 0, "Wrong keymap number");
if (lk_add_map(ctx, 0) != 0)
kbd_error(EXIT_FAILURE, 0, "Unable to define map");
lk_get_kmapinfo(ctx, &info);
if (info.keymaps != 1)
kbd_error(EXIT_FAILURE, 0, "Wrong keymap number");
if (lk_add_map(ctx, 1) != 0)
kbd_error(EXIT_FAILURE, 0, "Unable to define map");
lk_get_kmapinfo(ctx, &info);
if (info.keymaps != 2)
kbd_error(EXIT_FAILURE, 0, "Wrong keymap number");
if (lk_add_map(ctx, 2) != 0)
kbd_error(EXIT_FAILURE, 0, "Unable to define map");
lk_get_kmapinfo(ctx, &info);
if (info.keymaps != 3)
kbd_error(EXIT_FAILURE, 0, "Wrong keymap number");
lk_free(ctx);
return EXIT_SUCCESS;
}
|