diasymreader: Return success from SymWriter_OpenScope.

Signed-off-by: Esme Povirk <esme@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Esme Povirk 2022-02-04 13:41:52 -06:00 committed by Alexandre Julliard
parent b8f322aa33
commit 7ac9798680
1 changed files with 2 additions and 1 deletions

View File

@ -144,7 +144,8 @@ static HRESULT WINAPI SymWriter_OpenScope(ISymUnmanagedWriter5 *iface, ULONG32 s
ULONG32 *pRetVal)
{
FIXME("(%p,%u,%p)\n", iface, startOffset, pRetVal);
return E_NOTIMPL;
*pRetVal = 0xdeadbeef;
return S_OK;
}
static HRESULT WINAPI SymWriter_CloseScope(ISymUnmanagedWriter5 *iface, ULONG32 endOffset)