mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 00:27:13 +00:00
[WIN32SS] Fix argument name, spotted by Hermes. CORE-11858
svn path=/trunk/; revision=72417
This commit is contained in:
parent
963d66822f
commit
11d1368d04
1 changed files with 2 additions and 2 deletions
|
@ -2382,7 +2382,7 @@ APIENTRY
|
||||||
NtUserRegisterClassExWOW(
|
NtUserRegisterClassExWOW(
|
||||||
WNDCLASSEXW* lpwcx,
|
WNDCLASSEXW* lpwcx,
|
||||||
PUNICODE_STRING ClassName,
|
PUNICODE_STRING ClassName,
|
||||||
PUNICODE_STRING ClsNVersion,
|
PUNICODE_STRING ClsVersion,
|
||||||
PCLSMENUNAME pClassMenuName,
|
PCLSMENUNAME pClassMenuName,
|
||||||
DWORD fnID,
|
DWORD fnID,
|
||||||
DWORD Flags,
|
DWORD Flags,
|
||||||
|
@ -2437,7 +2437,7 @@ NtUserRegisterClassExWOW(
|
||||||
sizeof(WNDCLASSEXW));
|
sizeof(WNDCLASSEXW));
|
||||||
|
|
||||||
CapturedName = ProbeForReadUnicodeString(ClassName);
|
CapturedName = ProbeForReadUnicodeString(ClassName);
|
||||||
CapturedVersion = ProbeForReadUnicodeString(ClsNVersion);
|
CapturedVersion = ProbeForReadUnicodeString(ClsVersion);
|
||||||
|
|
||||||
ProbeForRead(pClassMenuName,
|
ProbeForRead(pClassMenuName,
|
||||||
sizeof(CLSMENUNAME),
|
sizeof(CLSMENUNAME),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue