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
056e5895
Commit
056e5895
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 cointerface.
parent
2d2e7c74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
undname.c
dlls/msvcrt/undname.c
+3
-1
No files found.
dlls/msvcrt/undname.c
View file @
056e5895
...
...
@@ -734,7 +734,8 @@ static BOOL demangle_datatype(struct parsed_symbol* sym, struct datatype_t* ct,
case
'T'
:
/* union */
case
'U'
:
/* struct */
case
'V'
:
/* class */
/* Class/struct/union */
case
'Y'
:
/* cointerface */
/* Class/struct/union/cointerface */
{
const
char
*
struct_name
=
NULL
;
const
char
*
type_name
=
NULL
;
...
...
@@ -748,6 +749,7 @@ static BOOL demangle_datatype(struct parsed_symbol* sym, struct datatype_t* ct,
case
'T'
:
type_name
=
"union "
;
break
;
case
'U'
:
type_name
=
"struct "
;
break
;
case
'V'
:
type_name
=
"class "
;
break
;
case
'Y'
:
type_name
=
"cointerface "
;
break
;
}
}
ct
->
left
=
str_printf
(
sym
,
"%s%s"
,
type_name
,
struct_name
);
...
...
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