[WIN32KDLL_2K3SP2]

Export NtUserGetClassInfoEx (as it's called in 2k3) both as NtUserGetClassInfo (as it's called on XP) and NtUserGetClassInfo. They have the same prototype.

svn path=/trunk/; revision=70463
This commit is contained in:
Timo Kreuzer 2015-12-28 23:51:05 +00:00
parent 0c24f4ecd6
commit 64820cf82f
2 changed files with 3 additions and 2 deletions

View file

@ -390,7 +390,8 @@
@ stdcall NtUserGetAtomName(long ptr)
@ stdcall NtUserGetCaretBlinkTime()
@ stdcall NtUserGetCaretPos(ptr)
@ stdcall NtUserGetClassInfo(ptr ptr ptr ptr long) # called NtUserGetClassInfoEx on 2k3,but identical to XP
@ stdcall NtUserGetClassInfo(ptr ptr ptr ptr long) NtUserGetClassInfoEx # called NtUserGetClassInfoEx on 2k3, but identical to XP's NtUserGetClassInfo
@ stdcall NtUserGetClassInfoEx(ptr ptr ptr ptr long)
@ stdcall NtUserGetClassName(ptr long ptr)
@ stdcall NtUserGetClipboardData(long ptr)
@ stdcall NtUserGetClipboardFormatName(long wstr ptr)

View file

@ -388,7 +388,7 @@ SVC_(UserGetAsyncKeyState, 1)
SVC_(UserGetAtomName, 2)
SVC_(UserGetCaretBlinkTime, 0)
SVC_(UserGetCaretPos, 1)
SVC_(UserGetClassInfo, 5) // called UserGetClassInfoEx on 2k3, but identical to XP
SVC_(UserGetClassInfoEx, 5)
SVC_(UserGetClassName, 3)
SVC_(UserGetClipboardData, 2)
SVC_(UserGetClipboardFormatName, 3)