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
8985e968
Commit
8985e968
authored
Apr 11, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 11, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Dump parameters default values in typelib.
parent
06845a44
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
tlb.c
tools/winedump/tlb.c
+8
-3
No files found.
tools/winedump/tlb.c
View file @
8985e968
...
...
@@ -520,7 +520,7 @@ static int dump_msft_res0f(seg_t *seg)
static
void
dump_msft_func
(
int
n
)
{
int
size
,
args_cnt
,
i
,
extra_attr
;
int
size
,
args_cnt
,
i
,
extra_attr
,
fkccic
;
print_begin_block_id
(
"FuncRecord"
,
n
);
...
...
@@ -530,11 +530,11 @@ static void dump_msft_func(int n)
print_hex
(
"flags"
);
print_short_hex
(
"VtableOffset"
);
print_short_hex
(
"funcdescsize"
);
print_hex
(
"FKCCIC"
);
fkccic
=
print_hex
(
"FKCCIC"
);
args_cnt
=
print_short_hex
(
"nrargs"
);
print_short_hex
(
"noptargs"
);
extra_attr
=
size
/
sizeof
(
INT
)
-
6
-
args_cnt
*
3
;
extra_attr
=
size
/
sizeof
(
INT
)
-
6
-
args_cnt
*
(
fkccic
&
0x1000
?
4
:
3
)
;
if
(
extra_attr
)
print_hex
(
"helpcontext"
);
...
...
@@ -551,6 +551,11 @@ static void dump_msft_func(int n)
if
(
extra_attr
>=
7
)
print_hex
(
"oCustData"
);
if
(
fkccic
&
0x1000
)
{
for
(
i
=
0
;
i
<
args_cnt
;
i
++
)
print_hex_id
(
"default value[%d]"
,
i
);
}
for
(
i
=
0
;
i
<
args_cnt
;
i
++
)
{
print_begin_block_id
(
"param"
,
i
);
...
...
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