Commit ab017a7c authored by Esme Povirk's avatar Esme Povirk Committed by Alexandre Julliard

slc: Return a non-zero handle from SLOpen.

parent 99e47361
...@@ -74,5 +74,10 @@ HRESULT WINAPI SLOpen(HSLC *handle) ...@@ -74,5 +74,10 @@ HRESULT WINAPI SLOpen(HSLC *handle)
{ {
FIXME("(%p) stub\n", handle ); FIXME("(%p) stub\n", handle );
if (!handle)
return E_INVALIDARG;
*handle = (HSLC)0xdeadbeef;
return S_OK; 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