xref: /reactos/dll/keyboard/kbdrost/deadkeys/ogonek (revision a6726659)
1/*
2 * COMBINING OGONEK
3 * The dead key transformation set was defined by checking the availability of
4 * the resulting letters in Unicode character table: https://unicode-table.com
5 */
6
7  { DEADTRANS(L'a', 0x0328, 0x0105, 0x00) },
8  { DEADTRANS(L'A', 0x0328, 0x0104, 0x00) },
9  { DEADTRANS(L'e', 0x0328, 0x0119, 0x00) },
10  { DEADTRANS(L'E', 0x0328, 0x0118, 0x00) },
11  { DEADTRANS(L'i', 0x0328, 0x012F, 0x00) },
12  { DEADTRANS(L'I', 0x0328, 0x012E, 0x00) },
13  { DEADTRANS(L'o', 0x0328, 0x01EB, 0x00) },
14  { DEADTRANS(L'O', 0x0328, 0x01EA, 0x00) },
15  { DEADTRANS(L'u', 0x0328, 0x0173, 0x00) },
16  { DEADTRANS(L'U', 0x0328, 0x0172, 0x00) },
17