2004-11-21 Casper S. Hornstrup <chorns@users.sourceforge.net>

* Makefile (DLLS_KBD): Add kbdda.
	* bootdata/txtsetup.sif: Add Danish language 406.
	* bootdata/hivesys.inf: Add kbdda.dll for Danish language 406.
	* bootdata/packages/reactos.dff: Ditto.
	* lib/kbdda: New directory.
	* lib/kbdda/.cvsignore: New file.
	* lib/kbdda/kbdda.c: Ditto.
	* lib/kbdda/kbdda.def: Ditto.
	* lib/kbdda/kbdda.rc: Ditto.
	* lib/kbdda/makefile: Ditto.

svn path=/trunk/; revision=11758
This commit is contained in:
Casper Hornstrup 2004-11-21 18:40:38 +00:00
parent eedd0d823f
commit e4a0875a54
10 changed files with 600 additions and 3 deletions

View file

@ -1,3 +1,16 @@
2004-11-21 Casper S. Hornstrup <chorns@users.sourceforge.net>
* Makefile (DLLS_KBD): Add kbdda.
* bootdata/txtsetup.sif: Add Danish language 406.
* bootdata/hivesys.inf: Add kbdda.dll for Danish language 406.
* bootdata/packages/reactos.dff: Ditto.
* lib/kbdda: New directory.
* lib/kbdda/.cvsignore: New file.
* lib/kbdda/kbdda.c: Ditto.
* lib/kbdda/kbdda.def: Ditto.
* lib/kbdda/kbdda.rc: Ditto.
* lib/kbdda/makefile: Ditto.
2004-11-20 Casper S. Hornstrup <chorns@users.sourceforge.net>
* drivers/net/tcpip/tests/tests/ipreceive.c (RunTest): Switch parameters

View file

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.260 2004/11/20 18:30:52 sedwards Exp $
# $Id: Makefile,v 1.261 2004/11/21 18:40:38 chorns Exp $
#
# Global makefile
#
@ -41,7 +41,7 @@ LIB_FSLIB = vfatlib
LIB_STATIC = string rosrtl epsapi uuid libwine zlib rtl tgetopt pseh adns
# Keyboard layout libraries
DLLS_KBD = kbddv kbdfr kbdgr kbdse kbduk kbdus
DLLS_KBD = kbdda kbddv kbdfr kbdgr kbdse kbduk kbdus
# Control Panels
DLLS_CPL = cpl

View file

@ -52,6 +52,8 @@ HKLM,"SYSTEM\CurrentControlSet\Control\IDConfigDB","CurrentConfig",0x00010001,0x
HKLM,"SYSTEM\CurrentControlSet\Control\IDConfigDB\Hardware Profiles\0000","FriendlyName",0x00000000,"New Hardware Profile"
; Keyboard Layouts
HKLM,"SYSTEM\CurrentControlSet\Control\KeyboardLayouts\00000406","Layout File",0x00000000,"kbdda.dll"
HKLM,"SYSTEM\CurrentControlSet\Control\KeyboardLayouts\00000406","Layout Text",0x00000000,"DA"
HKLM,"SYSTEM\CurrentControlSet\Control\KeyboardLayouts\00000407","Layout File",0x00000000,"kbdgr.dll"
HKLM,"SYSTEM\CurrentControlSet\Control\KeyboardLayouts\00000407","Layout Text",0x00000000,"GR"
HKLM,"SYSTEM\CurrentControlSet\Control\KeyboardLayouts\00000409","Layout File",0x00000000,"kbdus.dll"

View file

@ -75,6 +75,7 @@ lib\gdiplus\gdiplus.dll 1
lib\imagehlp\imagehlp.dll 1
lib\imm32\imm32.dll 1
lib\iphlpapi\iphlpapi.dll 1
lib\kbdda\kbdda.dll 1
lib\kbddv\kbddv.dll 1
lib\kbdfr\kbdfr.dll 1
lib\kbdgr\kbdgr.dll 1

View file

@ -63,14 +63,16 @@ vbe = "VBE Display"
Default = "XT-, AT- or extended keyboard (83-105 keys)"
[KeyboardLayout]
00000406 = "Danish (Denmark)"
00000809 = "English (United Kingdom)"
00000409 = "English (USA)"
00010409 = "English (USA-Dvorak)"
0000040C = "French (France)"
00000407 = "German (Germany)"
0000041D = "Swedish"
0000041D = "Swedish (Sweden)"
[Files.KeyboardLayout]
00000406 = kbdda.dll
00000407 = kbdgr.dll
00000409 = kbdus.dll
00010409 = kbddv.dll

View file

@ -0,0 +1,12 @@
errcodes.rc
temp.exp
*.a
*.o
*.bin
*.dll
*.lib
*.coff
*.sym
*.tmp
*.map
*.d

537
reactos/lib/kbdda/kbdda.c Normal file
View file

@ -0,0 +1,537 @@
/*
* Danish Keyboard layout
* Copyright (C) 2004 ReactOS Development Team
*/
#include <windows.h>
#include <internal/kbd.h>
#ifdef _M_IA64
#define ROSDATA static __declspec(allocate(".data"))
#else
#pragma data_seg(".data")
#define ROSDATA static
#endif
#define VK_EMPTY 0xff /* The non-existent VK */
#define KSHIFT 0x001 /* Shift modifier */
#define KCTRL 0x002 /* Ctrl modifier */
#define KALT 0x004 /* Alt modifier */
#define KEXT 0x100 /* Extended key code */
#define KMULTI 0x200 /* Multi-key */
#define KSPEC 0x400 /* Special key */
#define KNUMP 0x800 /* Number-pad */
#define KNUMS 0xc00 /* Special + number pad */
#define KMEXT 0x300 /* Multi + ext */
#define SHFT_INVALID 0x0F
/* Thanks to http://asp.flaaten.dk/pforum/keycode/keycode.htm */
#ifndef VK_OEM_1
#define VK_OEM_1 0xba
#endif
#ifndef VK_OEM_PLUS
#define VK_OEM_PLUS 0xbb
#endif
#ifndef VK_OEM_COMMA
#define VK_OEM_COMMA 0xbc
#endif
#ifndef VK_OEM_MINUS
#define VK_OEM_MINUS 0xbd
#endif
#ifndef VK_OEM_PERIOD
#define VK_OEM_PERIOD 0xbe
#endif
#ifndef VK_OEM_2
#define VK_OEM_2 0xbf
#endif
#ifndef VK_OEM_3
#define VK_OEM_3 0xc0
#endif
#ifndef VK_OEM_4
#define VK_OEM_4 0xdb
#endif
#ifndef VK_OEM_5
#define VK_OEM_5 0xdc
#endif
#ifndef VK_OEM_6
#define VK_OEM_6 0xdd
#endif
#ifndef VK_OEM_7
#define VK_OEM_7 0xde
#endif
#ifndef VK_OEM_8
#define VK_OEM_8 0xdf
#endif
#ifndef VK_OEM_102
#define VK_OEM_102 0xe1
#endif
ROSDATA USHORT scancode_to_vk[] = {
/* Numbers Row */
/* - 00 - */
/* 1 ... 2 ... 3 ... 4 ... */
VK_EMPTY, VK_ESCAPE, '1', '2',
'3', '4', '5', '6',
'7', '8', '9', '0',
VK_OEM_PLUS, VK_OEM_4, VK_BACK,
/* - 0f - */
/* First Letters Row */
VK_TAB, 'Q', 'W', 'E',
'R', 'T', 'Y', 'U',
'I', 'O', 'P',
VK_OEM_6, VK_OEM_1, VK_RETURN,
/* - 1d - */
/* Second Letters Row */
VK_LCONTROL,
'A', 'S', 'D', 'F',
'G', 'H', 'J', 'K',
'L', VK_OEM_3, VK_OEM_7, VK_OEM_5,
VK_LSHIFT, VK_OEM_2,
/* - 2c - */
/* Third letters row */
'Z', 'X', 'C', 'V',
'B', 'N', 'M', VK_OEM_COMMA,
VK_OEM_PERIOD,VK_OEM_MINUS, VK_RSHIFT,
/* - 37 - */
/* Bottom Row */
VK_MULTIPLY, VK_LMENU, VK_SPACE, VK_CAPITAL,
/* - 3b - */
/* F-Keys */
VK_F1, VK_F2, VK_F3, VK_F4, VK_F5, VK_F6,
VK_F7, VK_F8, VK_F9, VK_F10,
/* - 45 - */
/* Locks */
VK_NUMLOCK | KMEXT,
VK_SCROLL | KMULTI,
/* - 47 - */
/* Number-Pad */
VK_HOME | KNUMS, VK_UP | KNUMS, VK_PRIOR | KNUMS, VK_SUBTRACT,
VK_LEFT | KNUMS, VK_CLEAR | KNUMS, VK_RIGHT | KNUMS, VK_ADD,
VK_END | KNUMS, VK_DOWN | KNUMS, VK_NEXT | KNUMS,
VK_INSERT | KNUMS, VK_DELETE | KNUMS,
/* - 54 - */
/* Presumably PrtSc */
VK_SNAPSHOT,
/* - 55 - */
/* Oddities, and the remaining standard F-Keys */
VK_EMPTY, VK_OEM_102, VK_F11, VK_F12,
/* - 59 - */
VK_CLEAR, VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY, /* EREOF */
VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY, /* ZOOM */
VK_HELP,
/* - 64 - */
/* Even more F-Keys (for example, NCR keyboards from the early 90's) */
VK_F13, VK_F14, VK_F15, VK_F16, VK_F17, VK_F18, VK_F19, VK_F20,
VK_F21, VK_F22, VK_F23,
/* - 6f - */
/* Not sure who uses these codes */
VK_EMPTY, VK_EMPTY, VK_EMPTY,
/* - 72 - */
VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY,
/* - 76 - */
/* One more f-key */
VK_F24,
/* - 77 - */
VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY,
VK_EMPTY, VK_EMPTY, VK_EMPTY, VK_EMPTY, /* PA1 */
VK_EMPTY,
/* - 80 - */
0
};
ROSDATA VSC_VK extcode0_to_vk[] = {
{ 0x10, VK_MEDIA_PREV_TRACK | KEXT },
{ 0x19, VK_MEDIA_NEXT_TRACK | KEXT },
{ 0x1D, VK_RCONTROL | KEXT },
{ 0x20, VK_VOLUME_MUTE | KEXT },
{ 0x21, VK_LAUNCH_APP2 | KEXT },
{ 0x22, VK_MEDIA_PLAY_PAUSE | KEXT },
{ 0x24, VK_MEDIA_STOP | KEXT },
{ 0x2E, VK_VOLUME_DOWN | KEXT },
{ 0x30, VK_VOLUME_UP | KEXT },
{ 0x32, VK_BROWSER_HOME | KEXT },
{ 0x35, VK_DIVIDE | KEXT },
{ 0x37, VK_SNAPSHOT | KEXT },
{ 0x38, VK_RMENU | KEXT },
{ 0x47, VK_HOME | KEXT },
{ 0x48, VK_UP | KEXT },
{ 0x49, VK_PRIOR | KEXT },
{ 0x4B, VK_LEFT | KEXT },
{ 0x4D, VK_RIGHT | KEXT },
{ 0x4F, VK_END | KEXT },
{ 0x50, VK_DOWN | KEXT },
{ 0x51, VK_NEXT | KEXT },
{ 0x52, VK_INSERT | KEXT },
{ 0x53, VK_DELETE | KEXT },
{ 0x5B, VK_LWIN | KEXT },
{ 0x5C, VK_RWIN | KEXT },
{ 0x5D, VK_APPS | KEXT },
{ 0x5F, VK_SLEEP | KEXT },
{ 0x65, VK_BROWSER_SEARCH | KEXT },
{ 0x66, VK_BROWSER_FAVORITES | KEXT },
{ 0x67, VK_BROWSER_REFRESH | KEXT },
{ 0x68, VK_BROWSER_STOP | KEXT },
{ 0x69, VK_BROWSER_FORWARD | KEXT },
{ 0x6A, VK_BROWSER_BACK | KEXT },
{ 0x6B, VK_LAUNCH_APP1 | KEXT },
{ 0x6C, VK_LAUNCH_MAIL | KEXT },
{ 0x6D, VK_LAUNCH_MEDIA_SELECT | KEXT },
{ 0x1C, VK_RETURN | KEXT },
{ 0x46, VK_CANCEL | KEXT },
{ 0, 0 },
};
ROSDATA VSC_VK extcode1_to_vk[] = {
{ 0x1d, VK_PAUSE},
{ 0, 0 },
};
ROSDATA VK_TO_BIT modifier_keys[] = {
{ VK_SHIFT, KSHIFT },
{ VK_CONTROL, KCTRL },
{ VK_MENU, KALT },
{ 0, 0 }
};
typedef struct _mymod {
PVOID mod_keys;
WORD maxmod;
BYTE mod_max[7];
} INTERNAL_KBD_MODIFIERS;
ROSDATA INTERNAL_KBD_MODIFIERS modifier_bits[] = {
modifier_keys,
6,
{ 0, 1, 2, 4, SHFT_INVALID, SHFT_INVALID, 3 } /* Modifier bit order, NONE, SHIFT, CTRL, ALT, MENU, SHIFT + MENU, CTRL + MENU */
};
#define NOCAPS 0
#define CAPS KSHIFT /* Caps -> shift */
ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[] = {
/* Normal vs Shifted */
/* The numbers */
{ VK_OEM_5, NOCAPS, 0xbd, 0xa7 },
{ '1', NOCAPS, '1', '!' },
/* Ctrl-2 generates NUL */
{ VK_OEM_PLUS, NOCAPS, '+', '?' },
/* First letter row */
{ 'Q', CAPS, 'q', 'Q' },
{ 'W', CAPS, 'w', 'W' },
{ 'R', CAPS, 'r', 'R' },
{ 'T', CAPS, 't', 'T' },
{ 'Y', CAPS, 'y', 'Y' },
{ 'U', CAPS, 'u', 'U' },
{ 'I', CAPS, 'i', 'I' },
{ 'O', CAPS, 'o', 'O' },
{ 'P', CAPS, 'p', 'P' },
{ VK_OEM_6, CAPS, 0xe5, 0xc5, }, /* Å */
/* Second letter row */
{ 'A', CAPS, 'a', 'A' },
{ 'S', CAPS, 's', 'S' },
{ 'D', CAPS, 'd', 'D' },
{ 'F', CAPS, 'f', 'F' },
{ 'G', CAPS, 'g', 'G' },
{ 'H', CAPS, 'h', 'H' },
{ 'J', CAPS, 'j', 'J' },
{ 'K', CAPS, 'k', 'K' },
{ 'L', CAPS, 'l', 'L' },
/* Third letter row */
{ 'Z', CAPS, 'z', 'Z' },
{ 'X', CAPS, 'x', 'X' },
{ 'C', CAPS, 'c', 'C' },
{ 'V', CAPS, 'v', 'V' },
{ 'B', CAPS, 'b', 'B' },
{ 'N', CAPS, 'n', 'N' },
/* Specials */
{ VK_OEM_7, CAPS, 0xf8, 0xd8 }, /* Ø */
{ VK_OEM_3, CAPS, 0xe6, 0xc6 }, /* Æ */
{ VK_OEM_COMMA, CAPS, ',', ';' },
{ VK_OEM_PERIOD, CAPS, '.', ':' },
{ VK_OEM_2, NOCAPS, '\'', '*' },
{ VK_DECIMAL, NOCAPS, ',', ',' },
{ VK_TAB, NOCAPS, '\t', '\t' },
{ VK_ADD, NOCAPS, '+', '+' },
{ VK_DIVIDE, NOCAPS, '/', '/' },
{ VK_MULTIPLY, NOCAPS, '*', '*' },
{ VK_SUBTRACT, NOCAPS, '-', '-' },
{ 0, 0 }
};
ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = {
/* Normal, Shifted, Ctrl */
/* Legacy (telnet-style) ascii escapes */
{ VK_OEM_MINUS, NOCAPS, '-', '_', 0x1f /* US */ },
{ VK_RETURN, NOCAPS, '\r', '\r', '\n' },
{ VK_BACK, NOCAPS, '\b', '\b', 0x7f },
{ VK_ESCAPE, NOCAPS, 0x1b, 0x1b, 0x1b },
{ VK_SPACE, NOCAPS, ' ', ' ', ' ' },
{ VK_CANCEL, NOCAPS, 0x03, 0x03, 0x03 },
{ 0,0 }
};
ROSDATA VK_TO_WCHARS4 key_to_chars_4mod[] = {
/* Normal, Shifted, Ctrl, Ctrl-Alt */
/* Legacy Ascii generators */
{ '2', NOCAPS, '2', '\"', WCH_NONE, '@' },
{ '3', NOCAPS, '3', '#', WCH_NONE, 0x00a3 },
{ '4', NOCAPS, '4', 0xa4, WCH_NONE, '$' },
{ '5', NOCAPS, '5', '%', WCH_NONE, 0x20ac },
{ '7', NOCAPS, '7', '/', WCH_NONE, '{' },
{ '8', NOCAPS, '8', '(', WCH_NONE, '[' },
{ '9', NOCAPS, '9', ')', WCH_NONE, ']' },
{ '0', NOCAPS, '0', '=', WCH_NONE, '}' },
{ VK_OEM_4, NOCAPS, WCH_DEAD, WCH_DEAD, WCH_DEAD, '|' },
{ VK_EMPTY , NOCAPS, 0xb4, '`', '|', WCH_NONE },
{ 'E', CAPS, 'e', 'E', WCH_NONE, 0x20ac },
{ VK_OEM_1, NOCAPS, WCH_DEAD, WCH_DEAD, WCH_NONE, WCH_DEAD },
{ VK_EMPTY , NOCAPS, 0xa8, '^', WCH_NONE, '~' },
{ 'M', CAPS, 'm', 'M', WCH_NONE, 0x00b5 },
{ VK_OEM_102, NOCAPS, '<', '>', 0x001c, '\\' },
{ 0, 0 }
};
ROSDATA VK_TO_WCHARS5 key_to_chars_5mod[] = {
/* Normal, Shifted, Ctrl, Ctrl-Alt, C-S-x */
{ '6', NOCAPS, '6', '&', WCH_NONE, WCH_NONE, 0x1e /* RS */ },
{ 0, 0 }
};
ROSDATA VK_TO_WCHARS1 keypad_numbers[] = {
{ VK_DECIMAL, 0, '.' },
{ 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' },
{ 0,0 }
};
#define vk_master(n,x) { (PVK_TO_WCHARS1)x, n, sizeof(x[0]) }
ROSDATA VK_TO_WCHAR_TABLE vk_to_wchar_master_table[] = {
vk_master(3, key_to_chars_3mod),
vk_master(4, key_to_chars_4mod),
vk_master(5, key_to_chars_5mod),
vk_master(2, key_to_chars_2mod),
vk_master(1, keypad_numbers),
{ 0,0,0 }
};
ROSDATA VSC_LPWSTR key_names[] = {
{ 0x00, L"" },
{ 0x01, L"ESC" },
{ 0x0e, L"TILBAGE" },
{ 0x0f, L"TAB" },
{ 0x1c, L"RETUR" },
{ 0x1d, L"CTRL" },
{ 0x2a, L"SKIFT" },
{ 0x36, L"H\x00D8JRE SKIFT" },
{ 0x37, L"NUM * (Numerisk del)" },
{ 0x38, L"ALT" },
{ 0x39, L"MELLEMRUM" },
{ 0x3a, L"CAPS LOCK" },
{ 0x3b, L"F1" },
{ 0x3c, L"F2" },
{ 0x3d, L"F3" },
{ 0x3e, L"F4" },
{ 0x3f, L"F5" },
{ 0x40, L"F6" },
{ 0x41, L"F7" },
{ 0x42, L"F8" },
{ 0x43, L"F9" },
{ 0x44, L"F10" },
{ 0x45, L"PAUSE" },
{ 0x46, L"SCROLL LOCK" },
{ 0x47, L"7 (Numerisk del)" },
{ 0x48, L"8 (Numerisk del)" },
{ 0x49, L"9 (Numerisk del)" },
{ 0x4a, L"- (Numerisk del)" },
{ 0x4b, L"4 (Numerisk del)" },
{ 0x4c, L"5 (Numerisk del)" },
{ 0x4d, L"6 (Numerisk del)" },
{ 0x4e, L"+ (Numerisk del)" },
{ 0x4f, L"1 (Numerisk del)" },
{ 0x50, L"2 (Numerisk del)" },
{ 0x51, L"3 (Numerisk del)" },
{ 0x52, L"0 (Numerisk del)" },
{ 0x53, L"DECIMAL (Numerisk del)" },
{ 0x54, L"SYS REQ" },
{ 0x57, L"F11" },
{ 0x58, L"F12" },
{ 0x7c, L"F13" },
{ 0x7d, L"F14" },
{ 0x7e, L"F15" },
{ 0x7f, L"F16" },
{ 0x80, L"F17" },
{ 0x81, L"F18" },
{ 0x82, L"F19" },
{ 0x83, L"F20" },
{ 0x84, L"F21" },
{ 0x85, L"F22" },
{ 0x86, L"F23" },
{ 0x87, L"F24" },
{ 0, NULL }
};
ROSDATA VSC_LPWSTR extended_key_names[] = {
{ 0x1c, L"RETUR (Numerisk del)" },
{ 0x1d, L"H\x00D8JRE CTRL" },
{ 0x35, L"DIVISION (Numerisk del)" },
{ 0x37, L"PRINT SCREEN" },
{ 0x38, L"H\x00D8JRE ALT" },
{ 0x45, L"NUM LOCK" },
{ 0x46, L"BREAK" },
{ 0x47, L"HOME" },
{ 0x48, L"OPPIL" },
{ 0x49, L"PAGE UP" },
{ 0x4b, L"VENSTRE PIL" },
//{ 0x4c, L"Center" },
{ 0x4d, L"H\x00D8JRE PIL" },
{ 0x4f, L"END" },
{ 0x50, L"NEDPIL" },
{ 0x51, L"PAGE DOWN" },
{ 0x52, L"INS" },
{ 0x53, L"DEL" },
{ 0x54, L"<ReactOS>" },
{ 0x56, L"HELP" },
{ 0x5b, L"VENSTRE <ReactOS>" },
{ 0x5c, L"H\x00D8JRE <ReactOS>" },
{ 0x5d, L"Program" },
{ 0, NULL }
};
ROSDATA DEADKEY_LPWSTR dead_key_names[] = {
L"\x00a8" L"Omlyd",
L"\x005e" L"Cirkumfleks",
L"\x007e" L"Tilde",
L"\x00b4" L"Akut",
L"\x0060" L"Grave",
NULL
};
#define DEADTRANS(ch, accent, comp, flags) MAKELONG(ch, accent), comp, flags
ROSDATA DEADKEY dead_key[] = {
/* ¨ */
{ DEADTRANS(0x0061, 0x00a8, 0x00e4, 0x0000) },
{ DEADTRANS(0x0065, 0x00a8, 0x00eb, 0x0000) },
{ DEADTRANS(0x0069, 0x00a8, 0x00ef, 0x0000) },
{ DEADTRANS(0x006f, 0x00a8, 0x00f6, 0x0000) },
{ DEADTRANS(0x0075, 0x00a8, 0x00fc, 0x0000) },
{ DEADTRANS(0x0079, 0x00a8, 0x00ff, 0x0000) },
{ DEADTRANS(0x0041, 0x00a8, 0x00c4, 0x0000) },
{ DEADTRANS(0x0045, 0x00a8, 0x00cb, 0x0000) },
{ DEADTRANS(0x0049, 0x00a8, 0x00cf, 0x0000) },
{ DEADTRANS(0x004f, 0x00a8, 0x00d6, 0x0000) },
{ DEADTRANS(0x0055, 0x00a8, 0x00dc, 0x0000) },
{ DEADTRANS(0x0020, 0x00a8, 0x00a8, 0x0000) },
/* ^ */
{ DEADTRANS(0x0061, 0x005e, 0x00e2, 0x0000) },
{ DEADTRANS(0x0065, 0x005e, 0x00ea, 0x0000) },
{ DEADTRANS(0x0069, 0x005e, 0x00ee, 0x0000) },
{ DEADTRANS(0x006f, 0x005e, 0x00f4, 0x0000) },
{ DEADTRANS(0x0075, 0x005e, 0x00fb, 0x0000) },
{ DEADTRANS(0x0041, 0x005e, 0x00c2, 0x0000) },
{ DEADTRANS(0x0045, 0x005e, 0x00ca, 0x0000) },
{ DEADTRANS(0x0049, 0x005e, 0x00ce, 0x0000) },
{ DEADTRANS(0x004f, 0x005e, 0x00d4, 0x0000) },
{ DEADTRANS(0x0055, 0x005e, 0x00db, 0x0000) },
{ DEADTRANS(0x0020, 0x005e, 0x005e, 0x0000) },
/* ~ */
{ DEADTRANS(0x0061, 0x007e, 0x00e3, 0x0000) },
{ DEADTRANS(0x006f, 0x007e, 0x00f5, 0x0000) },
{ DEADTRANS(0x006e, 0x007e, 0x00f1, 0x0000) },
{ DEADTRANS(0x0041, 0x007e, 0x00c3, 0x0000) },
{ DEADTRANS(0x004f, 0x007e, 0x00d5, 0x0000) },
{ DEADTRANS(0x004e, 0x007e, 0x00d1, 0x0000) },
{ DEADTRANS(0x0020, 0x007e, 0x007e, 0x0000) },
/* ´ */
{ DEADTRANS(0x0061, 0x00b4, 0x00e1, 0x0000) },
{ DEADTRANS(0x0065, 0x00b4, 0x00e9, 0x0000) },
{ DEADTRANS(0x0069, 0x00b4, 0x00ed, 0x0000) },
{ DEADTRANS(0x006f, 0x00b4, 0x00f3, 0x0000) },
{ DEADTRANS(0x0075, 0x00b4, 0x00fa, 0x0000) },
{ DEADTRANS(0x0079, 0x00b4, 0x00fd, 0x0000) },
{ DEADTRANS(0x0041, 0x00b4, 0x00c1, 0x0000) },
{ DEADTRANS(0x0045, 0x00b4, 0x00c9, 0x0000) },
{ DEADTRANS(0x0049, 0x00b4, 0x00cd, 0x0000) },
{ DEADTRANS(0x004f, 0x00b4, 0x00d3, 0x0000) },
{ DEADTRANS(0x0055, 0x00b4, 0x00da, 0x0000) },
{ DEADTRANS(0x0059, 0x00b4, 0x00dd, 0x0000) },
{ DEADTRANS(0x0020, 0x00b4, 0x00b4, 0x0000) },
/* ` */
{ DEADTRANS(0x0061, 0x0060, 0x00e0, 0x0000) },
{ DEADTRANS(0x0065, 0x0060, 0x00e8, 0x0000) },
{ DEADTRANS(0x0069, 0x0060, 0x00ec, 0x0000) },
{ DEADTRANS(0x006f, 0x0060, 0x00f2, 0x0000) },
{ DEADTRANS(0x0075, 0x0060, 0x00f9, 0x0000) },
{ DEADTRANS(0x0041, 0x0060, 0x00c0, 0x0000) },
{ DEADTRANS(0x0045, 0x0060, 0x00c8, 0x0000) },
{ DEADTRANS(0x0049, 0x0060, 0x00cc, 0x0000) },
{ DEADTRANS(0x004f, 0x0060, 0x00d2, 0x0000) },
{ DEADTRANS(0x0055, 0x0060, 0x00d9, 0x0000) },
{ DEADTRANS(0x0020, 0x0060, 0x0060, 0x0000) },
{ 0, 0 }
};
/* Finally, the master table */
ROSDATA KBDTABLES keyboard_layout_table = {
/* modifier assignments */
(PMODIFIERS)&modifier_bits,
/* character from vk tables */
vk_to_wchar_master_table,
/* diacritical marks -- currently implemented by wine code */
dead_key,
/* Key names */
(VSC_LPWSTR *)key_names,
(VSC_LPWSTR *)extended_key_names,
dead_key_names, /* Dead key names */
/* scan code to virtual key maps */
scancode_to_vk,
sizeof(scancode_to_vk) / sizeof(scancode_to_vk[0]),
extcode0_to_vk,
extcode1_to_vk,
MAKELONG(1,1), /* Version 1.0 */
/* Ligatures -- Danish doesn't have any */
0,
0,
NULL
};
PKBDTABLES STDCALL KbdLayerDescriptor() {
return &keyboard_layout_table;
}
INT STDCALL
DllMain(
PVOID hinstDll,
ULONG dwReason,
PVOID reserved)
{
return 1;
}

View file

@ -0,0 +1,3 @@
LIBRARY kbdda.dll
EXPORTS
KbdLayerDescriptor@0

View file

@ -0,0 +1,5 @@
#define REACTOS_VERSION_DLL
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS DAAscii Keyboard Layout\0"
#define REACTOS_STR_INTERNAL_NAME "kbdda\0"
#define REACTOS_STR_ORIGINAL_FILENAME "kbdda.dll\0"
#include <reactos/version.rc>

View file

@ -0,0 +1,22 @@
PATH_TO_TOP = ../..
TARGET_TYPE = kmdll
TARGET_NAME = kbdda
TARGET_BASE = 0x5500000
TARGET_CFLAGS = -I$(PATH_TO_TOP)/ntoskrnl/include
# require os code to explicitly request A/W version of structs/functions
TARGET_CFLAGS += -D_DISABLE_TIDENTS
TARGET_OBJECTS = kbdda.o
DEP_OBJECTS = $(TARGET_OBJECTS)
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk
include $(TOOLS_PATH)/depend.mk