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
efce3600
Commit
efce3600
authored
May 02, 2024
by
Aida Jonikienė
Committed by
Alexandre Julliard
May 02, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp140_atomic_wait: Implement __std_*_crt().
OpenImageViewer calls these functions when triggering the image properties menu.
parent
89ad36b1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
main.c
dlls/msvcp140_atomic_wait/main.c
+10
-0
msvcp140_atomic_wait.spec
dlls/msvcp140_atomic_wait/msvcp140_atomic_wait.spec
+2
-2
No files found.
dlls/msvcp140_atomic_wait/main.c
View file @
efce3600
...
...
@@ -165,3 +165,13 @@ void __stdcall __std_release_shared_mutex_for_instance(void *ptr)
}
LeaveCriticalSection
(
&
shared_mutex_cs
);
}
void
*
__stdcall
__std_calloc_crt
(
size_t
count
,
size_t
size
)
{
return
calloc
(
count
,
size
);
}
void
__stdcall
__std_free_crt
(
void
*
ptr
)
{
free
(
ptr
);
}
dlls/msvcp140_atomic_wait/msvcp140_atomic_wait.spec
View file @
efce3600
...
...
@@ -12,12 +12,12 @@
@ stub __std_atomic_wait_get_remaining_timeout
@ stub __std_atomic_wait_indirect
@ stdcall __std_bulk_submit_threadpool_work(ptr long)
@ st
ub __std_calloc_crt
@ st
dcall __std_calloc_crt(long long)
@ stdcall __std_close_threadpool_work(ptr)
@ stdcall __std_create_threadpool_work(ptr ptr ptr)
@ stub __std_execution_wait_on_uchar
@ stub __std_execution_wake_by_address_all
@ st
ub __std_free_crt
@ st
dcall __std_free_crt(ptr)
@ stdcall __std_parallel_algorithms_hw_threads()
@ stdcall __std_release_shared_mutex_for_instance(ptr)
@ stdcall __std_submit_threadpool_work(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