Commit e670b01f authored by Andrew Nguyen's avatar Andrew Nguyen Committed by Alexandre Julliard

gdi32: Stub the NamedEscape function.

parent 640d2e02
......@@ -729,3 +729,15 @@ INT WINAPI DrawEscape(HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData)
FIXME("DrawEscape, stub\n");
return 0;
}
/*******************************************************************
* NamedEscape [GDI32.@]
*/
INT WINAPI NamedEscape( HDC hdc, LPCWSTR pDriver, INT nEscape, INT cbInput, LPCSTR lpszInData,
INT cbOutput, LPSTR lpszOutData )
{
FIXME("(%p, %s, %d, %d, %p, %d, %p)\n",
hdc, wine_dbgstr_w(pDriver), nEscape, cbInput, lpszInData, cbOutput,
lpszOutData);
return 0;
}
......@@ -365,7 +365,7 @@
# @ stub MirrorRgn
@ stdcall ModifyWorldTransform(long ptr long)
@ stdcall MoveToEx(long long long ptr)
# @ stub NamedEscape
@ stdcall NamedEscape(long wstr long long ptr long ptr)
@ stdcall OffsetClipRgn(long long long)
@ stdcall OffsetRgn(long long long)
@ stdcall OffsetViewportOrgEx(long long long ptr)
......
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