mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
Add proper prototypes for GetClassLongPtrA/W for _WIN64 case.
This commit is contained in:
parent
c1996e9aeb
commit
1b17b258ac
1 changed files with 5 additions and 0 deletions
|
@ -4140,8 +4140,13 @@ BOOL WINAPI GetClassInfoExW(HINSTANCE,LPCWSTR,WNDCLASSEXW *);
|
|||
LONG WINAPI GetClassLongA(HWND,INT);
|
||||
LONG WINAPI GetClassLongW(HWND,INT);
|
||||
#define GetClassLong WINELIB_NAME_AW(GetClassLong)
|
||||
#ifdef _WIN64
|
||||
LONG_PTR WINAPI GetClassLongPtrA(HWND,INT);
|
||||
LONG_PTR WINAPI GetClassLongPtrW(HWND,INT);
|
||||
#else
|
||||
#define GetClassLongPtrA GetClassLongA
|
||||
#define GetClassLongPtrW GetClassLongW
|
||||
#endif
|
||||
#define GetClassLongPtr WINELIB_NAME_AW(GetClassLongPtr)
|
||||
INT WINAPI GetClassNameA(HWND,LPSTR,INT);
|
||||
INT WINAPI GetClassNameW(HWND,LPWSTR,INT);
|
||||
|
|
Loading…
Reference in a new issue