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
4664b963
Commit
4664b963
authored
Feb 26, 2004
by
Mike Hearn
Committed by
Alexandre Julliard
Feb 26, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a comment to explain the LockWindowUpdate situation.
parent
7009428f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
dce.c
windows/dce.c
+17
-0
No files found.
windows/dce.c
View file @
4664b963
...
@@ -380,6 +380,13 @@ HDC WINAPI GetDCEx( HWND hwnd, HRGN hrgnClip, DWORD flags )
...
@@ -380,6 +380,13 @@ HDC WINAPI GetDCEx( HWND hwnd, HRGN hrgnClip, DWORD flags )
TRACE
(
"hwnd %p, hrgnClip %p, flags %08lx
\n
"
,
hwnd
,
hrgnClip
,
flags
);
TRACE
(
"hwnd %p, hrgnClip %p, flags %08lx
\n
"
,
hwnd
,
hrgnClip
,
flags
);
if
(
flags
&
(
DCX_LOCKWINDOWUPDATE
))
{
FIXME
(
"not yet supported - see source
\n
"
);
/* See the comment in LockWindowUpdate for more explanation. This flag is not implemented
* by that patch, but we need LockWindowUpdate implemented correctly before this can be done.
*/
}
if
(
!
hwnd
)
hwnd
=
GetDesktopWindow
();
if
(
!
hwnd
)
hwnd
=
GetDesktopWindow
();
if
(
!
(
full
=
WIN_IsCurrentProcess
(
hwnd
)))
if
(
!
(
full
=
WIN_IsCurrentProcess
(
hwnd
)))
{
{
...
@@ -665,6 +672,16 @@ BOOL WINAPI LockWindowUpdate( HWND hwnd )
...
@@ -665,6 +672,16 @@ BOOL WINAPI LockWindowUpdate( HWND hwnd )
{
{
static
HWND
lockedWnd
;
static
HWND
lockedWnd
;
/* This function is fully implemented by the following patch:
*
* http://www.winehq.org/hypermail/wine-patches/2004/01/0142.html
*
* but in order to work properly, it needs the ability to invalidate
* DCEs in other processes when the lock window is changed, which
* isn't possible yet.
* -mike
*/
FIXME
(
"(%p), partial stub!
\n
"
,
hwnd
);
FIXME
(
"(%p), partial stub!
\n
"
,
hwnd
);
USER_Lock
();
USER_Lock
();
...
...
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