Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1b17b258
Commit
1b17b258
authored
Oct 27, 2004
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 27, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add proper prototypes for GetClassLongPtrA/W for _WIN64 case.
parent
c1996e9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
winuser.h
include/winuser.h
+5
-0
No files found.
include/winuser.h
View file @
1b17b258
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment