Ignore:
Timestamp:
Jun 16, 2009, 3:08:41 PM (16 years ago)
Author:
ydario
Message:

Header updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/winuser.h

    r10579 r21299  
    37313731LONG        WINAPI GetWindowLongW(HWND,INT);
    37323732#define     GetWindowLong WINELIB_NAME_AW(GetWindowLong)
     3733
     3734#ifndef GetWindowLongPtr
     3735  #define GetWindowLongPtrA   GetWindowLongA
     3736  #define GetWindowLongPtrW   GetWindowLongW
     3737  #ifdef UNICODE
     3738    #define GetWindowLongPtr  GetWindowLongPtrW
     3739  #else
     3740    #define GetWindowLongPtr  GetWindowLongPtrA
     3741  #endif // !UNICODE
     3742#endif // !GetWindowLongPtr
     3743
     3744#ifndef SetWindowLongPtr
     3745  #define SetWindowLongPtrA   SetWindowLongA
     3746  #define SetWindowLongPtrW   SetWindowLongW
     3747  #ifdef UNICODE
     3748    #define SetWindowLongPtr  SetWindowLongPtrW
     3749  #else
     3750    #define SetWindowLongPtr  SetWindowLongPtrA
     3751  #endif // !UNICODE
     3752#endif // !SetWindowLongPtr
     3753
    37333754BOOL      WINAPI GetWindowPlacement(HWND,LPWINDOWPLACEMENT);
    37343755BOOL      WINAPI GetWindowRect(HWND,LPRECT);
Note: See TracChangeset for help on using the changeset viewer.