~ubuntu-branches/ubuntu/raring/vice/raring

« back to all changes in this revision

Viewing changes to src/arch/beos/kbd.c

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.1.7 upstream) (9.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090331003715-i5yisvcfv7mgz3eh
Tags: 2.1.dfsg-1
* New major upstream release (closes: #495937).
* Add desktop files (closes: #501181).

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include "lib.h"
37
37
#include "resources.h"
38
38
#include "machine.h"
 
39
#include "translate.h"
39
40
#include "types.h"
40
41
 
41
42
/* ------------------------------------------------------------------------ */
54
55
 
55
56
/* ------------------------------------------------------------------------ */
56
57
 
 
58
#ifndef COMMON_KBD
57
59
/* 40/80 column key.  */
58
60
static key_ctrl_column4080_func_t key_ctrl_column4080_func = NULL;
59
61
 
60
62
/* CAPS key.  */
61
63
static key_ctrl_caps_func_t key_ctrl_caps_func = NULL;
 
64
#endif
62
65
 
63
66
struct _convmap {
64
67
    /* Conversion map.  */
125
128
}
126
129
 
127
130
static const cmdline_option_t cmdline_options[] = {
128
 
    { "-keymap", SET_RESOURCE, 1, NULL, NULL, "KeymapIndex", NULL,
 
131
    { "-keymap", SET_RESOURCE, 1,
 
132
      NULL, NULL, "KeymapIndex", NULL,
 
133
      USE_PARAM_STRING, USE_DESCRIPTION_STRING,
 
134
      IDCLS_UNUSED, IDCLS_UNUSED,
129
135
      "<number>", "Specify index of used keymap" },
130
136
    { NULL },
131
137
};