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
9f9842ba
Commit
9f9842ba
authored
Feb 09, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uxtheme: Implement GetBufferedPaintTargetDC().
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
fac94168
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
buffer.c
dlls/uxtheme/buffer.c
+6
-3
system.c
dlls/uxtheme/tests/system.c
+0
-1
No files found.
dlls/uxtheme/buffer.c
View file @
9f9842ba
...
...
@@ -211,10 +211,13 @@ HDC WINAPI GetBufferedPaintDC(HPAINTBUFFER bufferhandle)
/***********************************************************************
* GetBufferedPaintTargetDC (UXTHEME.@)
*/
HDC
WINAPI
GetBufferedPaintTargetDC
(
HPAINTBUFFER
hBufferedPaint
)
HDC
WINAPI
GetBufferedPaintTargetDC
(
HPAINTBUFFER
bufferhandle
)
{
FIXME
(
"Stub (%p)
\n
"
,
hBufferedPaint
);
return
NULL
;
struct
paintbuffer
*
buffer
=
get_buffer_obj
(
bufferhandle
);
TRACE
(
"(%p)
\n
"
,
buffer
);
return
buffer
?
buffer
->
targetdc
:
NULL
;
}
/***********************************************************************
...
...
dlls/uxtheme/tests/system.c
View file @
9f9842ba
...
...
@@ -617,7 +617,6 @@ todo_wine
ok
(
hdc
==
src
,
"Unexpected hdc, %p, buffered dc %p
\n
"
,
hdc
,
src
);
hdc
=
pGetBufferedPaintTargetDC
(
buffer
);
todo_wine
ok
(
hdc
==
target
,
"Unexpected target hdc %p, original %p
\n
"
,
hdc
,
target
);
hr
=
pGetBufferedPaintTargetRect
(
buffer
,
NULL
);
...
...
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