mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
3c82e46ef1
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
10 lines
379 B
Text
10 lines
379 B
Text
/*
|
|
* COMBINING DOUBLE ACUTE ACCENT
|
|
* 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'o', 0x030B, 0x0151, 0x00) },
|
|
{ DEADTRANS(L'O', 0x030B, 0x0150, 0x00) },
|
|
{ DEADTRANS(L'u', 0x030B, 0x0171, 0x00) },
|
|
{ DEADTRANS(L'U', 0x030B, 0x0170, 0x00) },
|