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
2ca1ddd8
Commit
2ca1ddd8
authored
Apr 11, 2007
by
Louis Lenders
Committed by
Alexandre Julliard
Apr 12, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add RealChildWindowFromPoint.
parent
c7e40aa9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
user32.spec
dlls/user32/user32.spec
+1
-1
winpos.c
dlls/user32/winpos.c
+8
-0
No files found.
dlls/user32/user32.spec
View file @
2ca1ddd8
...
...
@@ -542,7 +542,7 @@
@ stdcall PtInRect(ptr double)
@ stub QuerySendMessage
# @ stub QueryUserCounters
@ st
ub RealChildWindowFromPoint
@ st
dcall RealChildWindowFromPoint(long double)
@ stdcall RealGetWindowClass(long ptr long) RealGetWindowClassA
@ stdcall RealGetWindowClassA(long ptr long)
@ stdcall RealGetWindowClassW(long ptr long)
...
...
dlls/user32/winpos.c
View file @
2ca1ddd8
...
...
@@ -433,6 +433,14 @@ HWND WINAPI ChildWindowFromPoint( HWND hwndParent, POINT pt )
}
/*******************************************************************
* RealChildWindowFromPoint (USER32.@)
*/
HWND
WINAPI
RealChildWindowFromPoint
(
HWND
hwndParent
,
POINT
pt
)
{
return
ChildWindowFromPointEx
(
hwndParent
,
pt
,
CWP_SKIPTRANSPARENT
);
}
/*******************************************************************
* ChildWindowFromPointEx (USER32.@)
*/
HWND
WINAPI
ChildWindowFromPointEx
(
HWND
hwndParent
,
POINT
pt
,
UINT
uFlags
)
...
...
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