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
3b9e49b4
Commit
3b9e49b4
authored
May 18, 2017
by
Austin English
Committed by
Alexandre Julliard
May 19, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add LogicalToPhysicalPoint/PhysicalToLogicalPoint stubs.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0ad76226
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
2 deletions
+28
-2
ext-ms-win-ntuser-uicontext-ext-l1-1-0.spec
...xt-ext-l1-1-0/ext-ms-win-ntuser-uicontext-ext-l1-1-0.spec
+1
-1
ext-ms-win-ntuser-window-l1-1-1.spec
...ntuser-window-l1-1-1/ext-ms-win-ntuser-window-l1-1-1.spec
+1
-1
user32.spec
dlls/user32/user32.spec
+2
-0
winpos.c
dlls/user32/winpos.c
+24
-0
No files found.
dlls/ext-ms-win-ntuser-uicontext-ext-l1-1-0/ext-ms-win-ntuser-uicontext-ext-l1-1-0.spec
View file @
3b9e49b4
...
...
@@ -36,7 +36,7 @@
@ stdcall IsWindow(long) user32.IsWindow
@ stdcall IsWindowUnicode(long) user32.IsWindowUnicode
@ stdcall IsWindowVisible(long) user32.IsWindowVisible
@ st
ub
LogicalToPhysicalPoint
@ st
dcall LogicalToPhysicalPoint(long ptr) user32.
LogicalToPhysicalPoint
@ stdcall MoveWindow(long long long long long long) user32.MoveWindow
@ stdcall RemovePropW(long wstr) user32.RemovePropW
@ stdcall SetForegroundWindow(long) user32.SetForegroundWindow
...
...
dlls/ext-ms-win-ntuser-window-l1-1-1/ext-ms-win-ntuser-window-l1-1-1.spec
View file @
3b9e49b4
...
...
@@ -36,7 +36,7 @@
@ stdcall IsWindow(long) user32.IsWindow
@ stdcall IsWindowUnicode(long) user32.IsWindowUnicode
@ stdcall IsWindowVisible(long) user32.IsWindowVisible
@ st
ub
LogicalToPhysicalPoint
@ st
dcall LogicalToPhysicalPoint(long ptr) user32.
LogicalToPhysicalPoint
@ stdcall MoveWindow(long long long long long long) user32.MoveWindow
@ stdcall RemovePropW(long wstr) user32.RemovePropW
@ stdcall SetForegroundWindow(long) user32.SetForegroundWindow
...
...
dlls/user32/user32.spec
View file @
3b9e49b4
...
...
@@ -491,6 +491,7 @@
@ stub LockWindowStation
@ stdcall LockWindowUpdate(long)
@ stdcall LockWorkStation()
@ stdcall LogicalToPhysicalPoint(long ptr)
@ stdcall LookupIconIdFromDirectory(ptr long)
@ stdcall LookupIconIdFromDirectoryEx(ptr long long long long)
@ stub MBToWCSEx
...
...
@@ -541,6 +542,7 @@
# @ stub PaintMenuBar
@ stdcall PeekMessageA(ptr long long long long)
@ stdcall PeekMessageW(ptr long long long long)
@ stdcall PhysicalToLogicalPoint(long ptr)
@ stub PlaySoundEvent
@ stdcall PostMessageA(long long long long)
@ stdcall PostMessageW(long long long long)
...
...
dlls/user32/winpos.c
View file @
3b9e49b4
...
...
@@ -2949,3 +2949,27 @@ void WINPOS_SysCommandSizeMove( HWND hwnd, WPARAM wParam )
else
WINPOS_ShowIconTitle
(
hwnd
,
TRUE
);
}
}
/***********************************************************************
* LogicalToPhysicalPoint (USER32.@)
*/
BOOL
WINAPI
LogicalToPhysicalPoint
(
HWND
hwnd
,
POINT
*
point
)
{
static
int
once
;
if
(
!
once
++
)
FIXME
(
"(%p %p) stub
\n
"
,
hwnd
,
point
);
return
TRUE
;
}
/***********************************************************************
* PhysicalToLogicalPoint (USER32.@)
*/
BOOL
WINAPI
PhysicalToLogicalPoint
(
HWND
hwnd
,
POINT
*
point
)
{
static
int
once
;
if
(
!
once
++
)
FIXME
(
"(%p %p) stub
\n
"
,
hwnd
,
point
);
return
TRUE
;
}
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