Robert Shearman : mlang: Return S_OK from fnIMultiLanguage2_SetMimeDBSource .
Module: wine Branch: refs/heads/master Commit: abc0f385a3652d74477cd72653cda5f3b0b01f8c URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=abc0f385a3652d74477cd726... Author: Robert Shearman <rob(a)codeweavers.com> Date: Mon Jun 12 16:45:40 2006 +0100 mlang: Return S_OK from fnIMultiLanguage2_SetMimeDBSource. The source is largely irrelevant since we are not likely to be wanting to ship updates to the MIME database as registry updates, instead of just changing the code. --- dlls/mlang/mlang.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/mlang/mlang.c b/dlls/mlang/mlang.c index 1dfb9fc..835a7b3 100644 --- a/dlls/mlang/mlang.c +++ b/dlls/mlang/mlang.c @@ -2228,8 +2228,8 @@ static HRESULT WINAPI fnIMultiLanguage2_ IMultiLanguage2* iface, MIMECONTF dwSource) { - FIXME("\n"); - return E_NOTIMPL; + FIXME("0x%08x\n", dwSource); + return S_OK; } static HRESULT WINAPI fnIMultiLanguage2_GetNumberOfScripts(
participants (1)
-
Alexandre Julliard