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

t2embed: Add TTIsEmbeddingEnabled stub.

parent 4f4812b4
......@@ -66,3 +66,10 @@ LONG WINAPI TTGetEmbeddingType(HDC hDC, ULONG *status)
if (status) *status = EMBED_NOEMBEDDING;
return E_API_NOTIMPL;
}
LONG WINAPI TTIsEmbeddingEnabled(HDC hDC, BOOL *enabled)
{
FIXME("(%p %p) stub\n", hDC, enabled);
if (enabled) *enabled = FALSE;
return E_API_NOTIMPL;
}
......@@ -5,7 +5,7 @@
@ stub TTEnableEmbeddingForFacename
@ stub TTGetEmbeddedFontInfo
@ stdcall TTGetEmbeddingType(ptr ptr)
@ stub TTIsEmbeddingEnabled
@ stdcall TTIsEmbeddingEnabled(ptr ptr)
@ stub TTIsEmbeddingEnabledForFacename
@ stdcall TTLoadEmbeddedFont(ptr long ptr long ptr ptr ptr wstr str ptr)
@ stub TTRunValidationTests
......
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