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
0f8a703d
Commit
0f8a703d
authored
Mar 10, 2017
by
Piotr Caban
Committed by
Alexandre Julliard
Mar 10, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp140: Add __crtCreateThreadpoolTimer implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
72df2637
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
msvcp140.spec
dlls/msvcp140/msvcp140.spec
+1
-1
misc.c
dlls/msvcp90/misc.c
+10
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/msvcp140/msvcp140.spec
View file @
0f8a703d
...
...
@@ -3760,7 +3760,7 @@
@ cdecl __crtCreateEventExW(ptr wstr long long) MSVCP__crtCreateEventExW
@ cdecl __crtCreateSemaphoreExW(ptr long long wstr long long) MSVCP__crtCreateSemaphoreExW
@ stub __crtCreateSymbolicLinkW
@
stub
__crtCreateThreadpoolTimer
@
cdecl __crtCreateThreadpoolTimer(ptr ptr ptr) MSVCP
__crtCreateThreadpoolTimer
@ stub __crtCreateThreadpoolWait
@ stub __crtFlushProcessWriteBuffers
@ stub __crtFreeLibraryWhenCallbackReturns
...
...
dlls/msvcp90/misc.c
View file @
0f8a703d
...
...
@@ -1266,6 +1266,16 @@ HANDLE CDECL MSVCP__crtCreateSemaphoreExW(
return
CreateSemaphoreExW
(
attribs
,
initial_count
,
max_count
,
name
,
flags
,
access
);
}
/*********************************************************************
* __crtCreateThreadpoolTimer (MSVCP140.@)
*/
PTP_TIMER
CDECL
MSVCP__crtCreateThreadpoolTimer
(
PTP_TIMER_CALLBACK
callback
,
PVOID
userdata
,
TP_CALLBACK_ENVIRON
*
environment
)
{
TRACE
(
"(%p %p %p)
\n
"
,
callback
,
userdata
,
environment
);
return
CreateThreadpoolTimer
(
callback
,
userdata
,
environment
);
}
/* ?_Execute_once@std@@YAHAAUonce_flag@1@P6GHPAX1PAPAX@Z1@Z */
/* ?_Execute_once@std@@YAHAEAUonce_flag@1@P6AHPEAX1PEAPEAX@Z1@Z */
BOOL
__cdecl
_Execute_once
(
INIT_ONCE
*
flag
,
PINIT_ONCE_FN
func
,
void
*
param
)
...
...
include/winbase.h
View file @
0f8a703d
...
...
@@ -1819,6 +1819,7 @@ WINADVAPI BOOL WINAPI CreatePrivateObjectSecurityEx(PSECURITY_DESCRIPTOR
WINADVAPI
BOOL
WINAPI
CreatePrivateObjectSecurityWithMultipleInheritance
(
PSECURITY_DESCRIPTOR
,
PSECURITY_DESCRIPTOR
,
PSECURITY_DESCRIPTOR
*
,
GUID
**
,
ULONG
,
BOOL
,
ULONG
,
HANDLE
,
PGENERIC_MAPPING
);
WINBASEAPI
PTP_POOL
WINAPI
CreateThreadpool
(
PVOID
);
WINBASEAPI
PTP_CLEANUP_GROUP
WINAPI
CreateThreadpoolCleanupGroup
(
void
);
WINBASEAPI
PTP_TIMER
WINAPI
CreateThreadpoolTimer
(
PTP_TIMER_CALLBACK
,
PVOID
,
PTP_CALLBACK_ENVIRON
);
WINBASEAPI
PTP_WAIT
WINAPI
CreateThreadpoolWait
(
PTP_WAIT_CALLBACK
,
PVOID
,
PTP_CALLBACK_ENVIRON
);
WINBASEAPI
PTP_WORK
WINAPI
CreateThreadpoolWork
(
PTP_WORK_CALLBACK
,
PVOID
,
PTP_CALLBACK_ENVIRON
);
WINBASEAPI
BOOL
WINAPI
CreateProcessA
(
LPCSTR
,
LPSTR
,
LPSECURITY_ATTRIBUTES
,
LPSECURITY_ATTRIBUTES
,
BOOL
,
DWORD
,
LPVOID
,
LPCSTR
,
LPSTARTUPINFOA
,
LPPROCESS_INFORMATION
);
...
...
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