Commit f265599f authored by Michael Kaufmann's avatar Michael Kaufmann Committed by Alexandre Julliard

gdi32: Add a stub for CancelDC.

parent e0a94b90
......@@ -2101,6 +2101,15 @@ COLORREF WINAPI SetDCPenColor(HDC hdc, COLORREF crColor)
}
/***********************************************************************
* CancelDC (GDI32.@)
*/
BOOL WINAPI CancelDC(HDC hdc)
{
FIXME("stub\n");
return TRUE;
}
/***********************************************************************
* SetVirtualResolution (GDI32.@)
*
* Undocumented on msdn. Called when PowerPoint XP saves a file.
......
......@@ -21,7 +21,7 @@
@ stdcall BeginPath(long)
@ stdcall BitBlt(long long long long long long long long long)
@ stub ByeByeGDI
@ stub CancelDC
@ stdcall CancelDC(long)
@ stub CheckColorsInGamut
@ stdcall ChoosePixelFormat(long ptr)
@ stdcall Chord(long long long long long long long long long)
......
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