[USER32][NTUSER] Implement (NtUser)SetClassLongPtr(A/W)

This commit is contained in:
Timo Kreuzer 2024-09-09 18:30:15 +03:00
parent 53b304e6a9
commit 201f00ab6f
5 changed files with 772 additions and 723 deletions

View file

@ -3015,11 +3015,22 @@ NtUserSetCapture(
ULONG_PTR
NTAPI
NtUserSetClassLong(
HWND hWnd,
INT Offset,
ULONG_PTR dwNewLong,
BOOL Ansi);
_In_ HWND hWnd,
_In_ INT Offset,
_In_ ULONG dwNewLong,
_In_ BOOL Ansi);
#ifdef _WIN64
ULONG_PTR
APIENTRY
NtUserSetClassLongPtr(
_In_ HWND hWnd,
_In_ INT Offset,
_In_ ULONG_PTR dwNewLong,
_In_ BOOL Ansi);
#endif // _WIN64
WORD
NTAPI
NtUserSetClassWord(
@ -3085,11 +3096,6 @@ NtUserFindExistingCursorIcon(
_In_ PUNICODE_STRING pustrRsrc,
_In_ FINDEXISTINGCURICONPARAM *param);
LONG_PTR
APIENTRY
NtUserSetClassLongPtr(
VOID);
DWORD
NTAPI
NtUserSetDbgTag(