Commit 0198d0d5 authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

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

parent 98058947
......@@ -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;
}
......
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