Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0d078dbc
Commit
0d078dbc
authored
Sep 06, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbgeng: Added DebugCreateEx() stub.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2946dc71
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
5 deletions
+15
-5
dbgeng.c
dlls/dbgeng/dbgeng.c
+14
-4
dbgeng.spec
dlls/dbgeng/dbgeng.spec
+1
-1
No files found.
dlls/dbgeng/dbgeng.c
View file @
0d078dbc
...
...
@@ -58,8 +58,8 @@ HRESULT WINAPI DebugExtensionInitialize(ULONG * pVersion, ULONG * pFlags)
* Creating Debug Engine client object
*
* PARAMS
*
InterfaceI
d [I] Interface Id of debugger client
*
pInterface [O] Pointer to interface as requested via InterfaceI
d
*
rii
d [I] Interface Id of debugger client
*
obj [O] Pointer to interface as requested via rii
d
*
* 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
...
...
dlls/dbgeng/dbgeng.spec
View file @
0d078dbc
...
...
@@ -2,5 +2,5 @@
@ stdcall DebugConnect(str ptr ptr)
@ stub DebugConnectWide
@ stdcall DebugCreate(ptr ptr)
@ st
ub DebugCreateEx
@ st
dcall DebugCreateEx(ptr long ptr)
@ stdcall DebugExtensionInitialize(ptr ptr)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment