mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Implement SetWindowLong() and refine implementation of GetWindowLong()
svn path=/trunk/; revision=4697
This commit is contained in:
parent
f5aebd93f1
commit
8674a82d87
1 changed files with 6 additions and 6 deletions
|
@ -5,7 +5,7 @@ ULONG STDCALL
|
||||||
NtUserGetSystemMetrics(ULONG Index);
|
NtUserGetSystemMetrics(ULONG Index);
|
||||||
DWORD STDCALL
|
DWORD STDCALL
|
||||||
NtUserGetClassLong(HWND hWnd, DWORD Offset);
|
NtUserGetClassLong(HWND hWnd, DWORD Offset);
|
||||||
DWORD STDCALL
|
LONG STDCALL
|
||||||
NtUserGetWindowLong(HWND hWnd, DWORD Index);
|
NtUserGetWindowLong(HWND hWnd, DWORD Index);
|
||||||
INT STDCALL
|
INT STDCALL
|
||||||
NtUserReleaseDC(HWND hWnd, HDC hDc);
|
NtUserReleaseDC(HWND hWnd, HDC hDc);
|
||||||
|
@ -1429,13 +1429,13 @@ NtUserSetWindowFNID(
|
||||||
DWORD Unknown0,
|
DWORD Unknown0,
|
||||||
DWORD Unknown1);
|
DWORD Unknown1);
|
||||||
|
|
||||||
DWORD
|
LONG
|
||||||
STDCALL
|
STDCALL
|
||||||
NtUserSetWindowLong(
|
NtUserSetWindowLong(
|
||||||
DWORD Unknown0,
|
HWND hWnd,
|
||||||
DWORD Unknown1,
|
DWORD Index,
|
||||||
DWORD Unknown2,
|
LONG NewValue,
|
||||||
DWORD Unknown3);
|
BOOL Ansi);
|
||||||
|
|
||||||
DWORD
|
DWORD
|
||||||
STDCALL
|
STDCALL
|
||||||
|
|
Loading…
Reference in a new issue