Commit 7ac97986 authored by Esme Povirk's avatar Esme Povirk Committed by Alexandre Julliard

diasymreader: Return success from SymWriter_OpenScope.

parent b8f322aa
......@@ -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)
......
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