Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
5c90a0dc
Commit
5c90a0dc
authored
Apr 23, 2019
by
Nikolay Sivov
Committed by
Alexandre Julliard
Apr 23, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbgeng: Implement GetModuleVersionInformation().
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
64aa7f61
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
15 deletions
+63
-15
Makefile.in
dlls/dbgeng/Makefile.in
+1
-0
dbgeng.c
dlls/dbgeng/dbgeng.c
+62
-15
No files found.
dlls/dbgeng/Makefile.in
View file @
5c90a0dc
MODULE
=
dbgeng.dll
IMPORTLIB
=
dbgeng
DELAYIMPORTS
=
version
C_SRCS
=
dbgeng.c
dlls/dbgeng/dbgeng.c
View file @
5c90a0dc
...
...
@@ -81,6 +81,25 @@ static struct target_process *debug_client_get_target(struct debug_client *debug
return
LIST_ENTRY
(
list_head
(
&
debug_client
->
targets
),
struct
target_process
,
entry
);
}
static
HRESULT
debug_target_return_string
(
const
char
*
str
,
char
*
buffer
,
unsigned
int
buffer_size
,
unsigned
int
*
size
)
{
unsigned
int
len
=
strlen
(
str
),
dst_len
;
if
(
size
)
*
size
=
len
+
1
;
if
(
buffer
&&
buffer_size
)
{
dst_len
=
min
(
len
,
buffer_size
-
1
);
if
(
dst_len
)
memcpy
(
buffer
,
str
,
dst_len
);
buffer
[
dst_len
]
=
0
;
}
return
len
<
buffer_size
?
S_OK
:
S_FALSE
;
}
static
WORD
debug_target_get_module_machine
(
struct
target_process
*
target
,
HMODULE
module
)
{
IMAGE_DOS_HEADER
dos
=
{
0
};
...
...
@@ -1446,29 +1465,57 @@ static HRESULT STDMETHODCALLTYPE debugsymbols_GetSourceFileLineOffsets(IDebugSym
static
HRESULT
STDMETHODCALLTYPE
debugsymbols_GetModuleVersionInformation
(
IDebugSymbols3
*
iface
,
ULONG
index
,
ULONG64
base
,
const
char
*
item
,
void
*
buffer
,
ULONG
buffer_size
,
ULONG
*
info_size
)
{
FIXME
(
"%p, %u, %s, %s, %p, %u, %p stub.
\n
"
,
iface
,
index
,
wine_dbgstr_longlong
(
base
),
debugstr_a
(
item
),
buffer
,
struct
debug_client
*
debug_client
=
impl_from_IDebugSymbols3
(
iface
);
const
struct
module_info
*
info
;
struct
target_process
*
target
;
void
*
version_info
,
*
ptr
;
HRESULT
hr
=
E_FAIL
;
DWORD
handle
,
size
;
TRACE
(
"%p, %u, %s, %s, %p, %u, %p.
\n
"
,
iface
,
index
,
wine_dbgstr_longlong
(
base
),
debugstr_a
(
item
),
buffer
,
buffer_size
,
info_size
);
return
E_NOTIMPL
;
}
if
(
!
(
target
=
debug_client_get_target
(
debug_client
)))
return
E_UNEXPECTED
;
static
HRESULT
debug_target_return_string
(
const
char
*
str
,
char
*
buffer
,
unsigned
int
buffer_size
,
unsigned
int
*
size
)
{
unsigned
int
len
=
strlen
(
str
),
dst_len
;
if
(
index
==
DEBUG_ANY_ID
)
info
=
debug_target_get_module_info_by_base
(
target
,
base
);
else
info
=
debug_target_get_module_info
(
target
,
index
)
;
if
(
size
)
*
size
=
len
+
1
;
if
(
!
info
)
{
WARN
(
"Was unable to locate module.
\n
"
);
return
E_INVALIDARG
;
}
if
(
buffer
&&
buffer_size
)
if
(
!
(
size
=
GetFileVersionInfoSizeA
(
info
->
image_name
,
&
handle
)))
return
E_FAIL
;
if
(
!
(
version_info
=
heap_alloc
(
size
)))
return
E_OUTOFMEMORY
;
if
(
GetFileVersionInfoA
(
info
->
image_name
,
handle
,
size
,
version_info
))
{
dst_len
=
min
(
len
,
buffer_size
-
1
);
if
(
dst_len
)
memcpy
(
buffer
,
str
,
dst_len
);
buffer
[
dst_len
]
=
0
;
if
(
VerQueryValueA
(
version_info
,
item
,
&
ptr
,
&
size
))
{
if
(
info_size
)
*
info_size
=
size
;
if
(
buffer
&&
buffer_size
)
{
unsigned
int
dst_len
=
min
(
size
,
buffer_size
);
if
(
dst_len
)
memcpy
(
buffer
,
ptr
,
dst_len
);
}
hr
=
buffer
&&
buffer_size
<
size
?
S_FALSE
:
S_OK
;
}
}
return
len
<
buffer_size
?
S_OK
:
S_FALSE
;
heap_free
(
version_info
);
return
hr
;
}
static
HRESULT
STDMETHODCALLTYPE
debugsymbols_GetModuleNameString
(
IDebugSymbols3
*
iface
,
ULONG
which
,
ULONG
index
,
...
...
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