Commit c87a78bc authored by Hugh McMaster's avatar Hugh McMaster Committed by Alexandre Julliard

user32/tests: Add tests for VK_SPACE, Shift-Space and Ctrl-Space.

parent 598d334e
...@@ -1635,6 +1635,9 @@ static const struct tounicode_tests ...@@ -1635,6 +1635,9 @@ static const struct tounicode_tests
{ 0, ctrl, '^', 1, {0x1e}}, { 0, ctrl, '^', 1, {0x1e}},
{ 0, ctrl, '_', 1, {0x1f}}, { 0, ctrl, '_', 1, {0x1f}},
{ 0, ctrl, '`', 0, {}}, { 0, ctrl, '`', 0, {}},
{ VK_SPACE, 0, 0, 1, {' ',0}},
{ VK_SPACE, shift, 0, 1, {' ',0}},
{ VK_SPACE, ctrl, 0, 1, {' ',0}},
}; };
static void test_ToUnicode(void) static void test_ToUnicode(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment