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
83f39cf7
Commit
83f39cf7
authored
Feb 25, 1999
by
Pascal Lessard
Committed by
Alexandre Julliard
Feb 25, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ScrollDC32 modified to return rect in logical coordinate.
parent
d636446e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
scroll.c
windows/scroll.c
+10
-3
No files found.
windows/scroll.c
View file @
83f39cf7
...
...
@@ -67,8 +67,9 @@ BOOL16 WINAPI ScrollDC16( HDC16 hdc, INT16 dx, INT16 dy, const RECT16 *rect,
/*************************************************************************
* ScrollDC32 (USER32.449)
*
* Both 'rc' and 'prLClip' are in logical units but update info is
* returned in device coordinates.
* Only the hrgnUpdate is return in device coordinate.
* rcUpdate must be returned in logical coordinate to comply with win API.
*
*/
BOOL32
WINAPI
ScrollDC32
(
HDC32
hdc
,
INT32
dx
,
INT32
dy
,
const
RECT32
*
rc
,
const
RECT32
*
prLClip
,
HRGN32
hrgnUpdate
,
...
...
@@ -148,10 +149,16 @@ BOOL32 WINAPI ScrollDC32( HDC32 hdc, INT32 dx, INT32 dy, const RECT32 *rc,
OffsetRgn32
(
hrgn2
,
dx
,
dy
);
CombineRgn32
(
hrgn
,
hrgn
,
hrgn2
,
RGN_DIFF
);
if
(
rcUpdate
)
GetRgnBox32
(
hrgn
,
rcUpdate
);
if
(
rcUpdate
)
{
GetRgnBox32
(
hrgn
,
rcUpdate
);
//Put the rcUpdate in logical coordinate
DPtoLP32
(
hdc
,
(
LPPOINT32
)
rcUpdate
,
2
);
}
if
(
!
hrgnUpdate
)
DeleteObject32
(
hrgn
);
DeleteObject32
(
hrgn2
);
}
}
else
...
...
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