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
3842fe5a
Commit
3842fe5a
authored
Apr 24, 2019
by
Nikolay Sivov
Committed by
Alexandre Julliard
Apr 24, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbgeng: Improve GetDebuggeeType() stub.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
75aa4ab1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
3 deletions
+37
-3
dbgeng.c
dlls/dbgeng/dbgeng.c
+16
-3
dbgeng.h
include/dbgeng.h
+21
-0
No files found.
dlls/dbgeng/dbgeng.c
View file @
3842fe5a
...
...
@@ -2525,11 +2525,24 @@ static HRESULT STDMETHODCALLTYPE debugcontrol_OutputStackTrace(IDebugControl2 *i
return
E_NOTIMPL
;
}
static
HRESULT
STDMETHODCALLTYPE
debugcontrol_GetDebuggeeType
(
IDebugControl2
*
iface
,
ULONG
*
_class
,
ULONG
*
qualifier
)
static
HRESULT
STDMETHODCALLTYPE
debugcontrol_GetDebuggeeType
(
IDebugControl2
*
iface
,
ULONG
*
debug_class
,
ULONG
*
qualifier
)
{
FIXME
(
"%p, %p, %p stub.
\n
"
,
iface
,
_class
,
qualifier
);
struct
debug_client
*
debug_client
=
impl_from_IDebugControl2
(
iface
);
static
struct
target_process
*
target
;
return
E_NOTIMPL
;
FIXME
(
"%p, %p, %p stub.
\n
"
,
iface
,
debug_class
,
qualifier
);
*
debug_class
=
DEBUG_CLASS_UNINITIALIZED
;
*
qualifier
=
0
;
if
(
!
(
target
=
debug_client_get_target
(
debug_client
)))
return
E_UNEXPECTED
;
*
debug_class
=
DEBUG_CLASS_USER_WINDOWS
;
*
qualifier
=
DEBUG_USER_WINDOWS_PROCESS
;
return
S_OK
;
}
static
HRESULT
STDMETHODCALLTYPE
debugcontrol_GetActualProcessorType
(
IDebugControl2
*
iface
,
ULONG
*
type
)
...
...
include/dbgeng.h
View file @
3842fe5a
...
...
@@ -169,6 +169,27 @@ DEFINE_GUID(IID_IDebugSystemObjects3, 0xe9676e2f, 0xe286, 0x4ea3, 0xb0, 0xf9
#define DEBUG_MODNAME_SYMBOL_FILE 3
#define DEBUG_MODNAME_MAPPED_IMAGE 4
#define DEBUG_CLASS_UNINITIALIZED 0
#define DEBUG_CLASS_KERNEL 1
#define DEBUG_CLASS_USER_WINDOWS 2
#define DEBUG_CLASS_IMAGE_FILE 3
#define DEBUG_DUMP_SMALL 1024
#define DEBUG_DUMP_DEFAULT 1025
#define DEBUG_DUMP_FULL 1026
#define DEBUG_DUMP_IMAGE_FILE 1027
#define DEBUG_DUMP_TRACE_LOG 1028
#define DEBUG_DUMP_WINDOWS_CE 1029
#define DEBUG_DUMP_ACTIVE 1030
#define DEBUG_USER_WINDOWS_PROCESS 0
#define DEBUG_USER_WINDOWS_PROCESS_SERVER 1
#define DEBUG_USER_WINDOWS_IDNA 2
#define DEBUG_USER_WINDOWS_REPT 3
#define DEBUG_USER_WINDOWS_SMALL_DUMP DEBUG_DUMP_SMALL
#define DEBUG_USER_WINDOWS_DUMP DEBUG_DUMP_DEFAULT
#define DEBUG_USER_WINDOWS_DUMP_WINDOWS_CE DEBUG_DUMP_WINDOWS_CE
#define DEBUG_INVALID_OFFSET ((ULONG64)-1)
#define DEBUG_ANY_ID 0xffffffff
...
...
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