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:
Esme Povirk 2021-05-08 14:21:25 -05:00 committed by Alexandre Julliard
parent 99e47361a3
commit ab017a7c36
1 changed files with 5 additions and 0 deletions

View File

@ -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;
}