Add prototypes for GetWindowLongPtr/SetWindowLongPtr.

diff --git a/include/winuser.h b/include/winuser.h
index 1ec72c4..f7238d1 100644
--- a/include/winuser.h
+++ b/include/winuser.h
@@ -4234,8 +4234,13 @@
 LONG        WINAPI GetWindowLongA(HWND,INT);
 LONG        WINAPI GetWindowLongW(HWND,INT);
 #define     GetWindowLong WINELIB_NAME_AW(GetWindowLong)
+#ifdef _WIN64
+LONG_PTR    WINAPI GetWindowLongPtrA(HWND,INT);
+LONG_PTR    WINAPI GetWindowLongPtrW(HWND,INT);
+#else
 #define     GetWindowLongPtrA GetWindowLongA
 #define     GetWindowLongPtrW GetWindowLongW
+#endif
 #define     GetWindowLongPtr WINELIB_NAME_AW(GetWindowLongPtr)
 UINT        WINAPI GetWindowModuleFileNameA(HWND,LPSTR,UINT);
 UINT        WINAPI GetWindowModuleFileNameW(HWND,LPWSTR,UINT);
@@ -4460,10 +4465,15 @@
 LONG        WINAPI SetWindowLongA(HWND,INT,LONG);
 LONG        WINAPI SetWindowLongW(HWND,INT,LONG);
 #define     SetWindowLong WINELIB_NAME_AW(SetWindowLong)
+#ifdef _WIN64
+LONG_PTR    WINAPI SetWindowLongPtrA(HWND,INT,LONG_PTR);
+LONG_PTR    WINAPI SetWindowLongPtrW(HWND,INT,LONG_PTR);
+#else
 #define     SetWindowLongPtrA SetWindowLongA
 #define     SetWindowLongPtrW SetWindowLongW
+#endif
 #define     SetWindowLongPtr WINELIB_NAME_AW(SetWindowLongPtr)
-BOOL      WINAPI SetWindowPlacement(HWND,const WINDOWPLACEMENT*);
+BOOL        WINAPI SetWindowPlacement(HWND,const WINDOWPLACEMENT*);
 HHOOK       WINAPI SetWindowsHookA(INT,HOOKPROC);
 HHOOK       WINAPI SetWindowsHookW(INT,HOOKPROC);
 #define     SetWindowsHook WINELIB_NAME_AW(SetWindowsHook)