shlwapi: Return E_NOTIMPL for unknown types in StrRetToBuf{A,W}.

Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Sebastian Lackner 2016-09-13 23:20:28 +02:00 committed by Alexandre Julliard
parent 980589471e
commit 0198d0d56a
1 changed files with 2 additions and 2 deletions

View File

@ -1509,7 +1509,7 @@ HRESULT WINAPI StrRetToBufA (LPSTRRET src, const ITEMIDLIST *pidl, LPSTR dest, U
default:
FIXME("unknown type!\n");
return FALSE;
return E_NOTIMPL;
}
return S_OK;
}
@ -1559,7 +1559,7 @@ HRESULT WINAPI StrRetToBufW (LPSTRRET src, const ITEMIDLIST *pidl, LPWSTR dest,
default:
FIXME("unknown type!\n");
return FALSE;
return E_NOTIMPL;
}
return S_OK;
}