From 38901f08c66904430d5a7546c2bf7a48c6210c5e Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Tue, 9 Sep 2008 07:12:36 -0500 Subject: [PATCH] mlang: Expand stub of fnIMLangFontLink2_GetStrCodePages. --- dlls/mlang/mlang.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/mlang/mlang.c b/dlls/mlang/mlang.c index 01706319b9a..e2f09700f55 100644 --- a/dlls/mlang/mlang.c +++ b/dlls/mlang/mlang.c @@ -3049,7 +3049,9 @@ static HRESULT WINAPI fnIMLangFontLink2_GetStrCodePages( IMLangFontLink2* This, DWORD *pdwCodePages, long *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, -- 2.11.4.GIT