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
f7441f9e
Commit
f7441f9e
authored
Mar 05, 2006
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Some more fixes to name demangling.
parent
e7061788
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
cpp.c
dlls/msvcrt/tests/cpp.c
+1
-0
undname.c
dlls/msvcrt/undname.c
+5
-1
No files found.
dlls/msvcrt/tests/cpp.c
View file @
f7441f9e
...
@@ -972,6 +972,7 @@ static void test_demangle(void)
...
@@ -972,6 +972,7 @@ static void test_demangle(void)
{
"??0aa.a@@QAE@XZ"
,
"??0aa.a@@QAE@XZ"
},
{
"??0aa.a@@QAE@XZ"
,
"??0aa.a@@QAE@XZ"
},
{
"??0aa$_3a@@QAE@XZ"
,
"public: __thiscall aa$_3a::aa$_3a(void)"
},
{
"??0aa$_3a@@QAE@XZ"
,
"public: __thiscall aa$_3a::aa$_3a(void)"
},
{
"??2?$aaa@AAUbbb@@AAUccc@@AAU2@@ddd@1eee@2@QAEHXZ"
,
"public: int __thiscall eee::eee::ddd::ddd::aaa<struct bbb &,struct ccc &,struct ccc &>::operator new(void)"
},
{
"??2?$aaa@AAUbbb@@AAUccc@@AAU2@@ddd@1eee@2@QAEHXZ"
,
"public: int __thiscall eee::eee::ddd::ddd::aaa<struct bbb &,struct ccc &,struct ccc &>::operator new(void)"
},
{
"?pSW@@3P6GHKPAX0PAU_tagSTACKFRAME@@0P6GH0K0KPAK@ZP6GPAX0K@ZP6GK0K@ZP6GK00PAU_tagADDRESS@@@Z@ZA"
,
"int (__stdcall* pSW)(unsigned long,void *,void *,struct _tagSTACKFRAME *,void *,int (__stdcall*)(void *,unsigned long,void *,unsigned long,unsigned long *),void * (__stdcall*)(void *,unsigned long),unsigned long (__stdcall*)(void *,unsigned long),unsigned long (__stdcall*)(void *,void *,struct _tagADDRESS *))"
},
};
};
int
i
,
num_test
=
(
sizeof
(
test
)
/
sizeof
(
test
[
0
]));
int
i
,
num_test
=
(
sizeof
(
test
)
/
sizeof
(
test
[
0
]));
char
*
name
;
char
*
name
;
...
...
dlls/msvcrt/undname.c
View file @
f7441f9e
...
@@ -851,7 +851,11 @@ static BOOL handle_data(struct parsed_symbol* sym)
...
@@ -851,7 +851,11 @@ static BOOL handle_data(struct parsed_symbol* sym)
case
'3'
:
case
'4'
:
case
'5'
:
case
'3'
:
case
'4'
:
case
'5'
:
{
{
unsigned
mark
=
sym
->
stack
.
num
;
unsigned
mark
=
sym
->
stack
.
num
;
if
(
!
demangle_datatype
(
sym
,
&
ct
,
NULL
,
FALSE
))
goto
done
;
struct
array
pmt
;
str_array_init
(
&
pmt
);
if
(
!
demangle_datatype
(
sym
,
&
ct
,
&
pmt
,
FALSE
))
goto
done
;
if
(
!
get_modifier
(
*
sym
->
current
++
,
&
modifier
))
goto
done
;
if
(
!
get_modifier
(
*
sym
->
current
++
,
&
modifier
))
goto
done
;
sym
->
stack
.
num
=
mark
;
sym
->
stack
.
num
=
mark
;
}
}
...
...
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