mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 21:36:11 +00:00
Fix two user32 resource tests
svn path=/trunk/; revision=43648
This commit is contained in:
parent
d1fe1b42ec
commit
d3b95aa689
1 changed files with 9 additions and 0 deletions
|
@ -384,6 +384,15 @@ NtUserCreateAcceleratorTable(
|
||||||
{
|
{
|
||||||
Accel->Table[Index].key = Entries[Index].key;
|
Accel->Table[Index].key = Entries[Index].key;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
RtlMultiByteToUnicodeN(&Accel->Table[Index].key,
|
||||||
|
sizeof(WCHAR),
|
||||||
|
NULL,
|
||||||
|
(PCSTR)&Entries[Index].key,
|
||||||
|
sizeof(CHAR));
|
||||||
|
}
|
||||||
|
|
||||||
Accel->Table[Index].cmd = Entries[Index].cmd;
|
Accel->Table[Index].cmd = Entries[Index].cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue