Implement {G|S}etWindowLongPtr

Eric Pouech eric.pouech at wanadoo.fr
Sun Sep 29 09:12:48 CDT 2002


György 'Nog' Jeney a écrit :
> 
> Apply this patch and observe nearly the whole wine recompile :)
> 
> ChangLog:
>  * include/winuser.h
>  * win/win.c
>    Implement {G|S}etWindowLongPtr
I don't want to see a whole wine recompilation every day, so I think
those defs

#define     SetWindowLong WINELIB_NAME_AW(SetWindowLong)
+LONG_PTR    WINAPI SetWindowLongA(HWND,INT,LONG_PTR);
+LONG_PTR    WINAPI SetWindowLongW(HWND,INT,LONG_PTR);
+#define     SetWindowLongPtr WINELIB_NAME_AW(SetWindowLongPtr)

should be instead
#define     SetWindowLong WINELIB_NAME_AW(SetWindowLong)
+LONG_PTR    WINAPI SetWindowLongPtrA(HWND,INT,LONG_PTR);
+LONG_PTR    WINAPI SetWindowLongPtrW(HWND,INT,LONG_PTR);
+#define     SetWindowLongPtr WINELIB_NAME_AW(SetWindowLongPtr)

A+



More information about the wine-devel mailing list