Commit 0d078dbc authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

dbgeng: Added DebugCreateEx() stub.

parent 2946dc71
......@@ -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,9 +68,9 @@ 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);
......@@ -78,6 +78,16 @@ HRESULT WINAPI DebugCreate(REFIID InterfaceId, PVOID * pInterface)
}
/************************************************************
* 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.@)
*
* Creating Debug Engine client object and connecting it to remote host
......
......@@ -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)
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