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
fac94168
Commit
fac94168
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 GetBufferedPaintDC().
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9d4a0039
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 @
fac94168
...
...
@@ -199,10 +199,13 @@ HRESULT WINAPI GetBufferedPaintBits(HPAINTBUFFER hBufferedPaint, RGBQUAD **ppbBu
/***********************************************************************
* GetBufferedPaintDC (UXTHEME.@)
*/
HDC
WINAPI
GetBufferedPaintDC
(
HPAINTBUFFER
hBufferedPaint
)
HDC
WINAPI
GetBufferedPaintDC
(
HPAINTBUFFER
bufferhandle
)
{
FIXME
(
"Stub (%p)
\n
"
,
hBufferedPaint
);
return
NULL
;
struct
paintbuffer
*
buffer
=
get_buffer_obj
(
bufferhandle
);
TRACE
(
"(%p)
\n
"
,
buffer
);
return
buffer
?
buffer
->
memorydc
:
NULL
;
}
/***********************************************************************
...
...
dlls/uxtheme/tests/system.c
View file @
fac94168
...
...
@@ -614,7 +614,6 @@ todo_wine
/* access buffer attributes */
hdc
=
pGetBufferedPaintDC
(
buffer
);
todo_wine
ok
(
hdc
==
src
,
"Unexpected hdc, %p, buffered dc %p
\n
"
,
hdc
,
src
);
hdc
=
pGetBufferedPaintTargetDC
(
buffer
);
...
...
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