Replace GetWindowLong by GetWindowLongPtr.
diff --git a/dlls/comctl32/header.c b/dlls/comctl32/header.c
index 0d59279..31be924 100644
--- a/dlls/comctl32/header.c
+++ b/dlls/comctl32/header.c
@@ -92,7 +92,7 @@
#define VERT_BORDER 3
#define DIVIDER_WIDTH 10
-#define HEADER_GetInfoPtr(hwnd) ((HEADER_INFO *)GetWindowLongA(hwnd,0))
+#define HEADER_GetInfoPtr(hwnd) ((HEADER_INFO *)GetWindowLongPtrW(hwnd,0))
inline static LRESULT
@@ -190,7 +190,7 @@
if (phdi->fmt & HDF_OWNERDRAW) {
DRAWITEMSTRUCT dis;
dis.CtlType = ODT_HEADER;
- dis.CtlID = GetWindowLongA (hwnd, GWL_ID);
+ dis.CtlID = GetWindowLongPtrW (hwnd, GWLP_ID);
dis.itemID = iItem;
dis.itemAction = ODA_DRAWENTIRE;
dis.itemState = phdi->bDown ? ODS_SELECTED : 0;
@@ -542,7 +542,7 @@
NMHDR nmhdr;
nmhdr.hwndFrom = hwnd;
- nmhdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
+ nmhdr.idFrom = GetWindowLongPtrW (hwnd, GWLP_ID);
nmhdr.code = code;
return (BOOL)SendMessageA (infoPtr->hwndNotify, WM_NOTIFY,
@@ -557,7 +557,7 @@
HDITEMA nmitem;
nmhdr.hdr.hwndFrom = hwnd;
- nmhdr.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
+ nmhdr.hdr.idFrom = GetWindowLongPtrW (hwnd, GWLP_ID);
nmhdr.hdr.code = code;
nmhdr.iItem = iItem;
nmhdr.iButton = 0;
@@ -586,7 +586,7 @@
NMHEADERA nmhdr;
nmhdr.hdr.hwndFrom = hwnd;
- nmhdr.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
+ nmhdr.hdr.idFrom = GetWindowLongPtrW (hwnd, GWLP_ID);
nmhdr.hdr.code = code;
nmhdr.iItem = iItem;
nmhdr.iButton = 0;
@@ -1284,7 +1284,7 @@
HDC hdc;
infoPtr = (HEADER_INFO *)Alloc (sizeof(HEADER_INFO));
- SetWindowLongA (hwnd, 0, (DWORD)infoPtr);
+ SetWindowLongPtrA (hwnd, 0, (DWORD_PTR)infoPtr);
infoPtr->hwndNotify = ((LPCREATESTRUCTA)lParam)->hwndParent;
infoPtr->uNumItem = 0;
@@ -1335,7 +1335,7 @@
ImageList_Destroy (infoPtr->himl);
Free (infoPtr);
- SetWindowLongA (hwnd, 0, 0);
+ SetWindowLongPtrA (hwnd, 0, 0);
return 0;
}