reactos/dll/keyboard/kbdrost/deadkeys/ring_above
Ștefan Fulea 3c82e46ef1
[DLL:KEYBOARD] Add a dead keys transformations collection. (#861)
It contains all the Unicode characters that can be formed with a
given dead key (i.e. combining character). Keyboard layouts with
dead keys may find these useful.

CORE-15056
2018-12-08 18:50:47 +01:00

15 lines
550 B
Plaintext

/*
* COMBINING RING ABOVE
* The dead key transformation set was defined by checking the availability of
* the resulting letters in Unicode character table: https://unicode-table.com
*/
{ DEADTRANS(L'a', 0x030A, 0x00E5, 0x00) },
{ DEADTRANS(L'A', 0x030A, 0x00C5, 0x00) },
{ DEADTRANS(L'u', 0x030A, 0x016F, 0x00) },
{ DEADTRANS(L'U', 0x030A, 0x016E, 0x00) },
{ DEADTRANS(L'w', 0x030A, 0x1E98, 0x00) },
/* no Unicode capital W with ring above */
{ DEADTRANS(L'y', 0x030A, 0x1E99, 0x00) },
/* no Unicode capital Y with ring above */