slc: Return a non-zero handle from SLOpen.
Signed-off-by: Esme Povirk <esme@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
99e47361a3
commit
ab017a7c36
|
@ -74,5 +74,10 @@ HRESULT WINAPI SLOpen(HSLC *handle)
|
|||
{
|
||||
FIXME("(%p) stub\n", handle );
|
||||
|
||||
if (!handle)
|
||||
return E_INVALIDARG;
|
||||
|
||||
*handle = (HSLC)0xdeadbeef;
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue