Commit fac94168 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

uxtheme: Implement GetBufferedPaintDC().

parent 9d4a0039
......@@ -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;
}
/***********************************************************************
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment