mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
t2embed: Add TTIsEmbeddingEnabled stub.
This commit is contained in:
parent
4f4812b447
commit
b9391933a6
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user