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
4ba09e11
Commit
4ba09e11
authored
Aug 04, 2016
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 04, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ucrtbase: Add __std_type_info_destroy_list implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2487168b
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
3 deletions
+19
-3
api-ms-win-crt-private-l1-1-0.spec
...win-crt-private-l1-1-0/api-ms-win-crt-private-l1-1-0.spec
+1
-1
cpp.c
dlls/msvcrt/cpp.c
+16
-0
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+1
-1
vcruntime140.spec
dlls/vcruntime140/vcruntime140.spec
+1
-1
No files found.
dlls/api-ms-win-crt-private-l1-1-0/api-ms-win-crt-private-l1-1-0.spec
View file @
4ba09e11
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
@ cdecl __std_exception_copy(ptr ptr) ucrtbase.__std_exception_copy
@ cdecl __std_exception_copy(ptr ptr) ucrtbase.__std_exception_copy
@ cdecl __std_exception_destroy(ptr) ucrtbase.__std_exception_destroy
@ cdecl __std_exception_destroy(ptr) ucrtbase.__std_exception_destroy
@ cdecl __std_type_info_compare(ptr ptr) ucrtbase.__std_type_info_compare
@ cdecl __std_type_info_compare(ptr ptr) ucrtbase.__std_type_info_compare
@
stub
__std_type_info_destroy_list
@
cdecl __std_type_info_destroy_list(ptr) ucrtbase.
__std_type_info_destroy_list
@ stub __std_type_info_hash
@ stub __std_type_info_hash
@ cdecl __std_type_info_name(ptr ptr) ucrtbase.__std_type_info_name
@ cdecl __std_type_info_name(ptr ptr) ucrtbase.__std_type_info_name
@ cdecl __unDName(ptr str long ptr ptr long) ucrtbase.__unDName
@ cdecl __unDName(ptr str long ptr ptr long) ucrtbase.__unDName
...
...
dlls/msvcrt/cpp.c
View file @
4ba09e11
...
@@ -1572,4 +1572,20 @@ const char* CDECL MSVCRT_type_info_name_list(type_info140 *ti, SLIST_HEADER *hea
...
@@ -1572,4 +1572,20 @@ const char* CDECL MSVCRT_type_info_name_list(type_info140 *ti, SLIST_HEADER *hea
TRACE
(
"(%p) returning %s
\n
"
,
ti
,
ti
->
name
);
TRACE
(
"(%p) returning %s
\n
"
,
ti
,
ti
->
name
);
return
ti
->
name
;
return
ti
->
name
;
}
}
/******************************************************************
* __std_type_info_destroy_list (UCRTBASE.@)
*/
void
CDECL
MSVCRT_type_info_destroy_list
(
SLIST_HEADER
*
header
)
{
SLIST_ENTRY
*
cur
,
*
next
;
TRACE
(
"(%p)
\n
"
,
header
);
for
(
cur
=
InterlockedFlushSList
(
header
);
cur
;
cur
=
next
)
{
next
=
cur
->
Next
;
MSVCRT_free
(
cur
);
}
}
#endif
#endif
dlls/ucrtbase/ucrtbase.spec
View file @
4ba09e11
...
@@ -143,7 +143,7 @@
...
@@ -143,7 +143,7 @@
@ cdecl __std_exception_copy(ptr ptr) MSVCRT___std_exception_copy
@ cdecl __std_exception_copy(ptr ptr) MSVCRT___std_exception_copy
@ cdecl __std_exception_destroy(ptr) MSVCRT___std_exception_destroy
@ cdecl __std_exception_destroy(ptr) MSVCRT___std_exception_destroy
@ cdecl __std_type_info_compare(ptr ptr) MSVCRT_type_info_compare
@ cdecl __std_type_info_compare(ptr ptr) MSVCRT_type_info_compare
@
stub __std
_type_info_destroy_list
@
cdecl __std_type_info_destroy_list(ptr) MSVCRT
_type_info_destroy_list
@ stub __std_type_info_hash
@ stub __std_type_info_hash
@ cdecl __std_type_info_name(ptr ptr) MSVCRT_type_info_name_list
@ cdecl __std_type_info_name(ptr ptr) MSVCRT_type_info_name_list
@ cdecl __stdio_common_vfprintf(int64 ptr str ptr ptr) MSVCRT__stdio_common_vfprintf
@ cdecl __stdio_common_vfprintf(int64 ptr str ptr ptr) MSVCRT__stdio_common_vfprintf
...
...
dlls/vcruntime140/vcruntime140.spec
View file @
4ba09e11
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
@ cdecl __std_exception_destroy(ptr) ucrtbase.__std_exception_destroy
@ cdecl __std_exception_destroy(ptr) ucrtbase.__std_exception_destroy
@ stub __std_terminate
@ stub __std_terminate
@ cdecl __std_type_info_compare(ptr ptr) ucrtbase.__std_type_info_compare
@ cdecl __std_type_info_compare(ptr ptr) ucrtbase.__std_type_info_compare
@
stub
__std_type_info_destroy_list
@
cdecl __std_type_info_destroy_list(ptr) ucrtbase.
__std_type_info_destroy_list
@ stub __std_type_info_hash
@ stub __std_type_info_hash
@ cdecl __std_type_info_name(ptr ptr) ucrtbase.__std_type_info_name
@ cdecl __std_type_info_name(ptr ptr) ucrtbase.__std_type_info_name
@ cdecl __telemetry_main_invoke_trigger(ptr)
@ cdecl __telemetry_main_invoke_trigger(ptr)
...
...
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