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
fd959ef0
Commit
fd959ef0
authored
Nov 02, 2021
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 02, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscvpdb.h: Add definition for friend function v3.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1131b326
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
mscvpdb.h
include/wine/mscvpdb.h
+9
-0
msc.c
tools/winedump/msc.c
+1
-2
No files found.
include/wine/mscvpdb.h
View file @
fd959ef0
...
...
@@ -569,6 +569,14 @@ union codeview_fieldtype
struct
{
unsigned
short
int
id
;
short
int
_pad0
;
cv_typ_t
type
;
char
name
[
1
];
}
friendfcn_v3
;
struct
{
unsigned
short
int
id
;
cv_typ16_t
type
;
short
int
attribute
;
unsigned
short
int
offset
;
/* numeric leaf */
...
...
@@ -1266,6 +1274,7 @@ union codeview_fieldtype
#define LF_STRUCTURE_V3 0x1505
#define LF_UNION_V3 0x1506
#define LF_ENUM_V3 0x1507
#define LF_FRIENDFCN_V3 0x150c
#define LF_MEMBER_V3 0x150d
#define LF_STMEMBER_V3 0x150e
#define LF_METHOD_V3 0x150f
...
...
tools/winedump/msc.c
View file @
fd959ef0
...
...
@@ -685,13 +685,12 @@ static void do_field(const unsigned char* start, const unsigned char* end)
ptr
+=
2
+
2
+
4
+
(
1
+
fieldtype
->
stmember_v2
.
p_name
.
namelen
);
break
;
#if 0
case
LF_FRIENDFCN_V3
:
printf
(
"
\t\t
Friend function V3: '%s' type:%x
\n
"
,
fieldtype
->
friendfcn_v3
.
name
,
fieldtype
->
friendfcn_v3
.
type
);
ptr
+=
2
+
2
+
4
+
(
strlen
(
fieldtype
->
stmember_v3
.
name
)
+
1
);
break
;
#endif
case
LF_BCLASS_V1
:
leaf_len
=
numeric_leaf
(
&
value
,
&
fieldtype
->
bclass_v1
.
offset
);
...
...
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