mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 15:36:04 +00:00
[USER32][NTUSER] Implement (NtUser)SetClassLongPtr(A/W)
This commit is contained in:
parent
53b304e6a9
commit
201f00ab6f
5 changed files with 772 additions and 723 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue