From 8674a82d876351c8f1a5598e13fc7883d70759c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Sat, 17 May 2003 13:41:31 +0000 Subject: [PATCH] Implement SetWindowLong() and refine implementation of GetWindowLong() svn path=/trunk/; revision=4697 --- reactos/include/win32k/ntuser.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/reactos/include/win32k/ntuser.h b/reactos/include/win32k/ntuser.h index 54d4b4fb9c6..276e025b213 100644 --- a/reactos/include/win32k/ntuser.h +++ b/reactos/include/win32k/ntuser.h @@ -5,7 +5,7 @@ ULONG STDCALL NtUserGetSystemMetrics(ULONG Index); DWORD STDCALL NtUserGetClassLong(HWND hWnd, DWORD Offset); -DWORD STDCALL +LONG STDCALL NtUserGetWindowLong(HWND hWnd, DWORD Index); INT STDCALL NtUserReleaseDC(HWND hWnd, HDC hDc); @@ -1429,13 +1429,13 @@ NtUserSetWindowFNID( DWORD Unknown0, DWORD Unknown1); -DWORD +LONG STDCALL NtUserSetWindowLong( - DWORD Unknown0, - DWORD Unknown1, - DWORD Unknown2, - DWORD Unknown3); + HWND hWnd, + DWORD Index, + LONG NewValue, + BOOL Ansi); DWORD STDCALL