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 * Creating Debug Engine client object
* *
* PARAMS * PARAMS
* InterfaceId [I] Interface Id of debugger client * riid [I] Interface Id of debugger client
* pInterface [O] Pointer to interface as requested via InterfaceId * obj [O] Pointer to interface as requested via riid
* *
* RETURNS * RETURNS
* Success: S_OK * Success: S_OK
@ -68,15 +68,25 @@ HRESULT WINAPI DebugExtensionInitialize(ULONG * pVersion, ULONG * pFlags)
* BUGS * BUGS
* Unimplemented * 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); SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return E_NOTIMPL; 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.@) * DebugConnect (DBGENG.@)
* *

View file

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