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 54 55 56 57 58 59 60 61 62 63
|
#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)
{
unsigned int i;
FILE *f = NULL;
struct kbdfile *fp = NULL;
struct kbdfile_ctx *kbdfile_ctx;
struct kbsentry kbs;
struct lk_ctx *ctx;
kbdfile_ctx = kbdfile_context_new();
if (!kbdfile_ctx)
kbd_error(EXIT_FAILURE, 0, "Unable to create kbdfile context");
fp = kbdfile_new(kbdfile_ctx);
if (!fp)
kbd_error(EXIT_FAILURE, 0, "Unable to create kbdfile");
ctx = lk_init();
lk_set_log_fn(ctx, NULL, NULL);
kbdfile_set_pathname(fp, "keymap5.map");
f = fopen(TESTDIR "/data/libkeymap/keymap5.map", "r");
if (!f)
kbd_error(EXIT_FAILURE, 0, "Unable to open: " TESTDIR "/data/libkeymap/keymap5.map: %s", strerror(errno));
kbdfile_set_file(fp, f);
if (lk_parse_keymap(ctx, fp) != 0)
kbd_error(EXIT_FAILURE, 0, "Unable to parse keymap");
for (i = 0; i < MAX_NR_FUNC; i++) {
if (!lk_func_exists(ctx, (int) i))
kbd_error(EXIT_FAILURE, 0, "Unable to find func %d", i);
kbs.kb_func = (unsigned char) i;
kbs.kb_string[0] = 0;
if (lk_get_func(ctx, &kbs) != 0)
kbd_error(EXIT_FAILURE, 0, "Unable to get func %d", i);
}
if (lk_del_func(ctx, 1) != 0)
kbd_error(EXIT_FAILURE, 0, "Unable to remove func 1");
if (lk_func_exists(ctx, 1))
kbd_error(EXIT_FAILURE, 0, "The func 1 still exist");
kbdfile_free(fp);
kbdfile_context_free(kbdfile_ctx);
lk_free(ctx);
return EXIT_SUCCESS;
}
|