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
49ac014d
Commit
49ac014d
authored
Jan 21, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: symbol undecoration: Added support for thunks.
parent
3db08321
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
undname.c
dlls/msvcrt/undname.c
+9
-4
No files found.
dlls/msvcrt/undname.c
View file @
49ac014d
...
...
@@ -1012,7 +1012,6 @@ static BOOL handle_method(struct parsed_symbol* sym, BOOL cast_op)
* 'Y'
* 'Z'
*/
accmem
=
*
sym
->
current
++
;
if
(
accmem
<
'A'
||
accmem
>
'Z'
)
goto
done
;
...
...
@@ -1033,11 +1032,19 @@ static BOOL handle_method(struct parsed_symbol* sym, BOOL cast_op)
{
case
2
:
case
3
:
member_type
=
"static "
;
break
;
case
4
:
case
5
:
member_type
=
"virtual "
;
break
;
case
6
:
case
7
:
member_type
=
"thunk "
;
break
;
case
6
:
case
7
:
access
=
str_printf
(
sym
,
"[thunk]:%s"
,
access
);
member_type
=
"virtual "
;
break
;
}
}
}
name
=
get_class_string
(
sym
,
0
);
if
((
accmem
-
'A'
)
%
8
==
6
||
(
accmem
-
'8'
)
%
8
==
7
)
/* a thunk */
name
=
str_printf
(
sym
,
"%s`adjustor{%s}' "
,
name
,
get_number
(
sym
));
if
(
accmem
<=
'X'
)
{
if
(((
accmem
-
'A'
)
%
8
)
!=
2
&&
((
accmem
-
'A'
)
%
8
)
!=
3
)
...
...
@@ -1049,8 +1056,6 @@ static BOOL handle_method(struct parsed_symbol* sym, BOOL cast_op)
}
}
name
=
get_class_string
(
sym
,
0
);
if
(
!
get_calling_convention
(
*
sym
->
current
++
,
&
call_conv
,
&
exported
,
sym
->
flags
))
goto
done
;
...
...
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