Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
39453f51
Commit
39453f51
authored
Oct 06, 2004
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add prototypes for GetWindowLongPtr/SetWindowLongPtr.
parent
0c48fbc6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
winuser.h
include/winuser.h
+11
-1
No files found.
include/winuser.h
View file @
39453f51
...
...
@@ -4234,8 +4234,13 @@ BOOL WINAPI GetWindowInfo(HWND, PWINDOWINFO);
LONG
WINAPI
GetWindowLongA
(
HWND
,
INT
);
LONG
WINAPI
GetWindowLongW
(
HWND
,
INT
);
#define GetWindowLong WINELIB_NAME_AW(GetWindowLong)
#ifdef _WIN64
LONG_PTR
WINAPI
GetWindowLongPtrA
(
HWND
,
INT
);
LONG_PTR
WINAPI
GetWindowLongPtrW
(
HWND
,
INT
);
#else
#define GetWindowLongPtrA GetWindowLongA
#define GetWindowLongPtrW GetWindowLongW
#endif
#define GetWindowLongPtr WINELIB_NAME_AW(GetWindowLongPtr)
UINT
WINAPI
GetWindowModuleFileNameA
(
HWND
,
LPSTR
,
UINT
);
UINT
WINAPI
GetWindowModuleFileNameW
(
HWND
,
LPWSTR
,
UINT
);
...
...
@@ -4460,10 +4465,15 @@ BOOL WINAPI SetUserObjectSecurity(HANDLE,PSECURITY_INFORMATION,PSECURITY_
LONG
WINAPI
SetWindowLongA
(
HWND
,
INT
,
LONG
);
LONG
WINAPI
SetWindowLongW
(
HWND
,
INT
,
LONG
);
#define SetWindowLong WINELIB_NAME_AW(SetWindowLong)
#ifdef _WIN64
LONG_PTR
WINAPI
SetWindowLongPtrA
(
HWND
,
INT
,
LONG_PTR
);
LONG_PTR
WINAPI
SetWindowLongPtrW
(
HWND
,
INT
,
LONG_PTR
);
#else
#define SetWindowLongPtrA SetWindowLongA
#define SetWindowLongPtrW SetWindowLongW
#endif
#define SetWindowLongPtr WINELIB_NAME_AW(SetWindowLongPtr)
BOOL
WINAPI
SetWindowPlacement
(
HWND
,
const
WINDOWPLACEMENT
*
);
BOOL
WINAPI
SetWindowPlacement
(
HWND
,
const
WINDOWPLACEMENT
*
);
HHOOK
WINAPI
SetWindowsHookA
(
INT
,
HOOKPROC
);
HHOOK
WINAPI
SetWindowsHookW
(
INT
,
HOOKPROC
);
#define SetWindowsHook WINELIB_NAME_AW(SetWindowsHook)
...
...
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