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:
parent
b8f322aa33
commit
7ac9798680
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue