The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => Topic started by: 4C617273H on September 19, 2010, 05:41:27 PM

Title: SetWindowLongPtr not included, SetWindowLong available only
Post by: 4C617273H on September 19, 2010, 05:41:27 PM
Hello,

here's the reference: http://msdn.microsoft.com/en-us/library/ms633591(VS.85).aspx

Kind and Best Regards

Lars
Title: Re: SetWindowLongPtr not included, SetWindowLong available only
Post by: Vortex on September 19, 2010, 06:05:35 PM
SetWindowLongPtr is a macro wrapper. If you check winuser.h :

#define SetWindowLongPtrA SetWindowLongA
#define SetWindowLongPtrW SetWindowLongW


You should use the SetWindowLong function.
Title: Re: SetWindowLongPtr not included, SetWindowLong available only
Post by: 4C617273H on September 19, 2010, 06:17:27 PM
Hi, ok, so SetWindowLong is already the new API?

I don't absolutely need it. I just read on msdn SetWindowLong is not thaat compatible with 64-bit Windows (even in 32-bit code).
Title: Re: SetWindowLongPtr not included, SetWindowLong available only
Post by: MichaelW on September 20, 2010, 12:34:27 AM

WINUSERAPI
LONG
WINAPI
SetWindowLongA(
    IN HWND hWnd,
    IN int nIndex,
    IN LONG dwNewLong);

WINUSERAPI
LONG_PTR
WINAPI
SetWindowLongPtrA(
    HWND hWnd,
    int nIndex,
    LONG_PTR dwNewLong);


AFAIK the difference is in the compiler's handling of LONG_PTR.

http://msdn.microsoft.com/en-us/library/ms810720.aspx#midl64b_issues

Quote
INT_PTR, LONG_PTR
Each of these is a polymorphic integral type that has a different size on 32-bit and 64-bit Windows NT® platforms to guarantee that a pointer value can be stored in it. The data types are defined in the public file, basetsd.h. Each has a size of 4 bytes on 32-bit systems and 8 bytes on 64-bit systems. On 32-bit platforms, INT_PTR maps to int and LONG_PTR maps to long. On 64-bit platforms, both the types map to __int64.