dbgeng: Added DebugCreateEx() stub.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2017-09-06 12:19:30 +03:00 committed by Alexandre Julliard
parent 2946dc71aa
commit 0d078dbc82
2 changed files with 15 additions and 5 deletions

View File

@ -58,8 +58,8 @@ HRESULT WINAPI DebugExtensionInitialize(ULONG * pVersion, ULONG * pFlags)
* Creating Debug Engine client object
*
* PARAMS
* InterfaceId [I] Interface Id of debugger client
* pInterface [O] Pointer to interface as requested via InterfaceId
* riid [I] Interface Id of debugger client
* obj [O] Pointer to interface as requested via riid
*
* RETURNS
* Success: S_OK
@ -68,15 +68,25 @@ HRESULT WINAPI DebugExtensionInitialize(ULONG * pVersion, ULONG * pFlags)
* BUGS
* Unimplemented
*/
HRESULT WINAPI DebugCreate(REFIID InterfaceId, PVOID * pInterface)
HRESULT WINAPI DebugCreate(REFIID riid, void **obj)
{
FIXME("(%p,%p): stub\n", InterfaceId, pInterface);
FIXME("(%s, %p): stub\n", debugstr_guid(riid), obj);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return E_NOTIMPL;
}
/************************************************************
* DebugCreateEx (DBGENG.@)
*/
HRESULT WINAPI DebugCreateEx(REFIID riid, DWORD flags, void **obj)
{
FIXME("(%s, %#x, %p): stub\n", debugstr_guid(riid), flags, obj);
return E_NOTIMPL;
}
/************************************************************
* DebugConnect (DBGENG.@)
*

View File

@ -2,5 +2,5 @@
@ stdcall DebugConnect(str ptr ptr)
@ stub DebugConnectWide
@ stdcall DebugCreate(ptr ptr)
@ stub DebugCreateEx
@ stdcall DebugCreateEx(ptr long ptr)
@ stdcall DebugExtensionInitialize(ptr ptr)