ReactOS 0.4.15-dev-7846-g8ba6c66
kbdno.c File Reference
#include <stdarg.h>
#include <windef.h>
#include <winuser.h>
#include <ndk/kbd.h>
Include dependency graph for kbdno.c:

Go to the source code of this file.

Macros

#define WIN32_NO_STATUS
 
#define ROSDATA   static __attribute__((section(".data")))
 
#define VK_EMPTY   0xff /* The non-existent VK */
 
#define KNUMS   KBDNUMPAD|KBDSPECIAL /* Special + number pad */
 
#define KMEXT   KBDEXT|KBDMULTIVK /* Multi + ext */
 
#define vk_master(n, x)   { (PVK_TO_WCHARS1)x, n, sizeof(x[0]) }
 
#define DEADTRANS(ch, accent, comp, flags)   MAKELONG(ch, accent), comp, flags
 

Functions

PKBDTABLES WINAPI KbdLayerDescriptor (VOID)
 
INT WINAPI DllMain (PVOID hinstDll, ULONG dwReason, PVOID reserved)
 

Variables

ROSDATA USHORT scancode_to_vk []
 
ROSDATA VSC_VK extcode0_to_vk []
 
ROSDATA VSC_VK extcode1_to_vk []
 
ROSDATA VK_TO_BIT modifier_keys []
 
ROSDATA MODIFIERS modifier_bits
 
ROSDATA VK_TO_WCHARS2 key_to_chars_2mod []
 
ROSDATA VK_TO_WCHARS3 key_to_chars_3mod []
 
ROSDATA VK_TO_WCHARS4 key_to_chars_4mod []
 
ROSDATA VK_TO_WCHARS5 key_to_chars_5mod []
 
ROSDATA VK_TO_WCHARS1 keypad_numbers []
 
ROSDATA VK_TO_WCHAR_TABLE vk_to_wchar_master_table []
 
ROSDATA VSC_LPWSTR key_names []
 
ROSDATA VSC_LPWSTR extended_key_names []
 
ROSDATA DEADKEY_LPWSTR dead_key_names []
 
ROSDATA DEADKEY dead_key []
 
ROSDATA KBDTABLES keyboard_layout_table
 

Macro Definition Documentation

◆ DEADTRANS

#define DEADTRANS (   ch,
  accent,
  comp,
  flags 
)    MAKELONG(ch, accent), comp, flags

Definition at line 373 of file kbdno.c.

◆ KMEXT

#define KMEXT   KBDEXT|KBDMULTIVK /* Multi + ext */

Definition at line 25 of file kbdno.c.

◆ KNUMS

#define KNUMS   KBDNUMPAD|KBDSPECIAL /* Special + number pad */

Definition at line 24 of file kbdno.c.

◆ ROSDATA

#define ROSDATA   static __attribute__((section(".data")))

Definition at line 18 of file kbdno.c.

◆ VK_EMPTY

#define VK_EMPTY   0xff /* The non-existent VK */

Definition at line 22 of file kbdno.c.

◆ vk_master

#define vk_master (   n,
  x 
)    { (PVK_TO_WCHARS1)x, n, sizeof(x[0]) }

Definition at line 270 of file kbdno.c.

◆ WIN32_NO_STATUS

#define WIN32_NO_STATUS

Definition at line 5 of file kbdno.c.

Function Documentation

◆ DllMain()

INT WINAPI DllMain ( PVOID  hinstDll,
ULONG  dwReason,
PVOID  reserved 
)

Definition at line 477 of file kbdno.c.

481{
482 UNREFERENCED_PARAMETER(hinstDll);
485 return 1;
486}
DWORD dwReason
Definition: misc.cpp:154
r reserved
Definition: btrfs.c:3006
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:317

◆ KbdLayerDescriptor()

PKBDTABLES WINAPI KbdLayerDescriptor ( VOID  )

Definition at line 472 of file kbdno.c.

472 {
473 return &keyboard_layout_table;
474}
ROSDATA KBDTABLES keyboard_layout_table
Definition: kbdno.c:443

Variable Documentation

◆ dead_key

ROSDATA DEADKEY dead_key[]

Definition at line 375 of file kbdno.c.

◆ dead_key_names

ROSDATA DEADKEY_LPWSTR dead_key_names[]
Initial value:
= {
L"\x00a8" L"Omlyd",
L"\x005e" L"Cirkumfleks",
L"\x007e" L"Tilde",
L"\x00b4" L"Akut",
L"\x0060" L"Grave",
}
#define NULL
Definition: types.h:112
#define L(x)
Definition: ntvdm.h:50

Definition at line 364 of file kbdno.c.

◆ extcode0_to_vk

ROSDATA VSC_VK extcode0_to_vk[]

Definition at line 98 of file kbdno.c.

◆ extcode1_to_vk

ROSDATA VSC_VK extcode1_to_vk[]
Initial value:
= {
{ 0x1d, VK_PAUSE},
{ 0, 0 },
}
#define VK_PAUSE
Definition: winuser.h:2205

Definition at line 140 of file kbdno.c.

◆ extended_key_names

ROSDATA VSC_LPWSTR extended_key_names[]
Initial value:
= {
{ 0x1c, L"ENTER (Numerisk del)" },
{ 0x1d, L"H\x00D8YRE CTRL" },
{ 0x35, L"DIVISION (Numerisk del)" },
{ 0x37, L"PRINT SCREEN" },
{ 0x38, L"H\x00D8YRE ALT" },
{ 0x45, L"NUM LOCK" },
{ 0x46, L"BREAK" },
{ 0x47, L"HOME" },
{ 0x48, L"PIL OPP" },
{ 0x49, L"PAGE UP" },
{ 0x4b, L"VENSTRE PIL" },
{ 0x4d, L"H\x00D8YRE PIL" },
{ 0x4f, L"END" },
{ 0x50, L"PIL NED" },
{ 0x51, L"PAGE DOWN" },
{ 0x52, L"INS" },
{ 0x53, L"DEL" },
{ 0x54, L"<ReactOS>" },
{ 0x56, L"HJELP" },
{ 0x5b, L"VENSTRE <ReactOS>" },
{ 0x5c, L"H\x00D8YRE <ReactOS>" },
{ 0x5d, L"Program" },
{ 0, NULL }
}

Definition at line 337 of file kbdno.c.

◆ key_names

ROSDATA VSC_LPWSTR key_names[]

Definition at line 281 of file kbdno.c.

◆ key_to_chars_2mod

ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[]
Initial value:
= {
{ VK_OEM_5, 0, {'|', 0xa7} },
{ '1', 0, {'1', '!'} },
{ VK_OEM_PLUS, 0, {'+', '?'} },
{ VK_OEM_6, CAPLOK, {0xe5, 0xc5} },
{ VK_OEM_3, CAPLOK, {0xf8, 0xd8} },
{ VK_OEM_7, CAPLOK, {0xe6, 0xc6} },
{ VK_OEM_COMMA, CAPLOK, {',', ';'} },
{ VK_OEM_PERIOD, CAPLOK, {'.', ':'} },
{ VK_OEM_2, 0, {'\'', '*'} },
{ VK_DECIMAL, 0, {',', ','} },
{ VK_TAB, 0, {'\t', '\t'} },
{ VK_ADD, 0, {'+', '+'} },
{ VK_DIVIDE, 0, {'/', '/'} },
{ VK_MULTIPLY, 0, {'*', '*'} },
{ VK_SUBTRACT, 0, {'-', '-'} },
{ 0, 0 }
}
#define CAPLOK
Definition: kbd.h:118
#define VK_OEM_5
Definition: winuser.h:2318
#define VK_TAB
Definition: winuser.h:2199
#define VK_MULTIPLY
Definition: winuser.h:2249
#define VK_OEM_7
Definition: winuser.h:2320
#define VK_OEM_6
Definition: winuser.h:2319
#define VK_ADD
Definition: winuser.h:2250
#define VK_OEM_2
Definition: winuser.h:2315
#define VK_DIVIDE
Definition: winuser.h:2254
#define VK_DECIMAL
Definition: winuser.h:2253
#define VK_OEM_3
Definition: winuser.h:2316
#define VK_SUBTRACT
Definition: winuser.h:2252

Definition at line 158 of file kbdno.c.

◆ key_to_chars_3mod

ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[]

Definition at line 184 of file kbdno.c.

◆ key_to_chars_4mod

ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[]
Initial value:
= {
{ '2', 0, {'2', '\"', WCH_NONE, '@'} },
{ '3', 0, {'3', '#', WCH_NONE, 0x00a3} },
{ '4', 0, {'4', 0xa4, WCH_NONE, '$'} },
{ '5', 0, {'5', '%', WCH_NONE, 0x20ac} },
{ '7', 0, {'7', '/', WCH_NONE, '{'} },
{ '8', 0, {'8', '(', WCH_NONE, '['} },
{ '9', 0, {'9', ')', WCH_NONE, ']'} },
{ '0', 0, {'0', '=', WCH_NONE, '}'} },
{ VK_OEM_4, 0, {'\\', 0x60, WCH_NONE, 0xb4} },
{ VK_EMPTY , 0, {0xb4, '`', '|', WCH_NONE} },
{ 'E', CAPLOK, {'e', 'E', 0x05, 0x20ac} },
{ VK_EMPTY , 0, {0xa8, '^', WCH_NONE, '~'} },
{ 'M', CAPLOK, {'m', 'M', 0x0d, 0x00b5} },
{ VK_OEM_102, 0, {'<', '>', 0x001c, '\\'} },
{ 0, 0 }
}
#define WCH_DEAD
Definition: kbd.h:114
#define WCH_NONE
Definition: kbd.h:113
#define VK_EMPTY
Definition: kbdno.c:22
#define VK_OEM_4
Definition: winuser.h:2317
#define VK_OEM_1
Definition: winuser.h:2308

Definition at line 226 of file kbdno.c.

◆ key_to_chars_5mod

ROSDATA VK_TO_WCHARS5 key_to_chars_5mod[]
Initial value:
= {
{ '6', 0, {'6', '&', WCH_NONE, WCH_NONE, 0x1e } },
{ 0, 0 }
}

Definition at line 249 of file kbdno.c.

◆ keyboard_layout_table

ROSDATA KBDTABLES keyboard_layout_table
Initial value:
= {
0,
0,
}
#define RTL_NUMBER_OF(x)
Definition: RtlRegistry.c:12
#define KLLF_ALTGR
Definition: kbd.h:91
ROSDATA DEADKEY dead_key[]
Definition: kbdno.c:375
ROSDATA VSC_LPWSTR extended_key_names[]
Definition: kbdno.c:337
ROSDATA USHORT scancode_to_vk[]
Definition: kbdno.c:27
ROSDATA MODIFIERS modifier_bits
Definition: kbdno.c:152
ROSDATA VSC_LPWSTR key_names[]
Definition: kbdno.c:281
ROSDATA VSC_VK extcode0_to_vk[]
Definition: kbdno.c:98
ROSDATA VK_TO_WCHAR_TABLE vk_to_wchar_master_table[]
Definition: kbdno.c:272
ROSDATA DEADKEY_LPWSTR dead_key_names[]
Definition: kbdno.c:364
ROSDATA VSC_VK extcode1_to_vk[]
Definition: kbdno.c:140
#define MAKELONG(a, b)
Definition: typedefs.h:249

Definition at line 443 of file kbdno.c.

Referenced by KbdLayerDescriptor().

◆ keypad_numbers

ROSDATA VK_TO_WCHARS1 keypad_numbers[]
Initial value:
= {
{ VK_NUMPAD0, 0, {'0'} },
{ VK_NUMPAD1, 0, {'1'} },
{ VK_NUMPAD2, 0, {'2'} },
{ VK_NUMPAD3, 0, {'3'} },
{ VK_NUMPAD4, 0, {'4'} },
{ VK_NUMPAD5, 0, {'5'} },
{ VK_NUMPAD6, 0, {'6'} },
{ VK_NUMPAD7, 0, {'7'} },
{ VK_NUMPAD8, 0, {'8'} },
{ VK_NUMPAD9, 0, {'9'} },
{ VK_DECIMAL, 0, {'.'} },
{ 0,0 }
}
#define VK_NUMPAD3
Definition: winuser.h:2242
#define VK_NUMPAD1
Definition: winuser.h:2240
#define VK_NUMPAD2
Definition: winuser.h:2241
#define VK_NUMPAD4
Definition: winuser.h:2243
#define VK_NUMPAD0
Definition: winuser.h:2239
#define VK_NUMPAD6
Definition: winuser.h:2245
#define VK_NUMPAD9
Definition: winuser.h:2248
#define VK_NUMPAD5
Definition: winuser.h:2244
#define VK_NUMPAD7
Definition: winuser.h:2246
#define VK_NUMPAD8
Definition: winuser.h:2247

Definition at line 255 of file kbdno.c.

◆ modifier_bits

ROSDATA MODIFIERS modifier_bits
Initial value:
= {
6,
{ 0, 1, 2, 4, SHFT_INVALID, SHFT_INVALID, 3 }
}
#define SHFT_INVALID
Definition: kbd.h:19
ROSDATA VK_TO_BIT modifier_keys[]
Definition: kbdno.c:145

Definition at line 152 of file kbdno.c.

◆ modifier_keys

ROSDATA VK_TO_BIT modifier_keys[]
Initial value:
= {
{ 0, 0 }
}
#define KBDALT
Definition: kbd.h:16
#define KBDCTRL
Definition: kbd.h:15
#define KBDSHIFT
Definition: kbd.h:14
#define VK_CONTROL
Definition: winuser.h:2203
#define VK_SHIFT
Definition: winuser.h:2202
#define VK_MENU
Definition: winuser.h:2204

Definition at line 145 of file kbdno.c.

◆ scancode_to_vk

ROSDATA USHORT scancode_to_vk[]

Definition at line 27 of file kbdno.c.

◆ vk_to_wchar_master_table

ROSDATA VK_TO_WCHAR_TABLE vk_to_wchar_master_table[]
Initial value:
= {
{ 0,0,0 }
}
ROSDATA VK_TO_WCHARS1 keypad_numbers[]
Definition: kbdno.c:255
ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[]
Definition: kbdno.c:226
#define vk_master(n, x)
Definition: kbdno.c:270
ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[]
Definition: kbdno.c:184
ROSDATA VK_TO_WCHARS5 key_to_chars_5mod[]
Definition: kbdno.c:249
ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[]
Definition: kbdno.c:158

Definition at line 272 of file kbdno.c.