Commit 38901f08 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

mlang: Expand stub of fnIMLangFontLink2_GetStrCodePages.

parent 43048397
...@@ -3049,7 +3049,9 @@ static HRESULT WINAPI fnIMLangFontLink2_GetStrCodePages( IMLangFontLink2* This, ...@@ -3049,7 +3049,9 @@ static HRESULT WINAPI fnIMLangFontLink2_GetStrCodePages( IMLangFontLink2* This,
DWORD *pdwCodePages, long *pcchCodePages) DWORD *pdwCodePages, long *pcchCodePages)
{ {
FIXME("(%p)->%s %li %x %p %p\n",This, debugstr_wn(pszSrc,cchSrc),cchSrc,dwPriorityCodePages,pdwCodePages,pcchCodePages); FIXME("(%p)->%s %li %x %p %p\n",This, debugstr_wn(pszSrc,cchSrc),cchSrc,dwPriorityCodePages,pdwCodePages,pcchCodePages);
return E_NOTIMPL; *pdwCodePages = 0;
*pcchCodePages = 1;
return S_OK;
} }
static HRESULT WINAPI fnIMLangFontLink2_CodePageToCodePages(IMLangFontLink2* This, static HRESULT WINAPI fnIMLangFontLink2_CodePageToCodePages(IMLangFontLink2* This,
......
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