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
b5465d96
Commit
b5465d96
authored
Mar 31, 2017
by
Daniel Lehman
Committed by
Alexandre Julliard
Apr 03, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr120: Add __crtSleep.
Signed-off-by:
Daniel Lehman
<
dlehman@esri.com
>
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d22569e8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
msvcr120_app.spec
dlls/msvcr120_app/msvcr120_app.spec
+1
-1
misc.c
dlls/msvcrt/misc.c
+9
-0
No files found.
dlls/msvcr120/msvcr120.spec
View file @
b5465d96
...
...
@@ -919,7 +919,7 @@
@ stub -arch=i386,win64 __crtSetThreadStackGuarantee
@ cdecl __crtSetUnhandledExceptionFilter(ptr) MSVCR110__crtSetUnhandledExceptionFilter
@ cdecl -arch=i386,win64 __crtTerminateProcess(long) MSVCR110__crtTerminateProcess
@
stub
__crtSleep
@
cdecl __crtSleep(long) MSVCRT
__crtSleep
@ cdecl -arch=i386,win64 __crtUnhandledException(ptr) MSVCRT__crtUnhandledException
@ cdecl __daylight() MSVCRT___p__daylight
@ cdecl __dllonexit(ptr ptr ptr)
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
b5465d96
...
...
@@ -895,7 +895,7 @@
@ stub __crtIsPackagedApp
@ cdecl __crtLCMapStringA(long long str long ptr long long long) msvcr120.__crtLCMapStringA
@ cdecl __crtLCMapStringW(long long wstr long ptr long long long) msvcr120.__crtLCMapStringW
@
stub
__crtSleep
@
cdecl __crtSleep(long) msvcr120.
__crtSleep
@ stub __crtWaitForWinRTThreadExit
@ cdecl __daylight() msvcr120.__daylight
@ cdecl __dllonexit(ptr ptr ptr) msvcr120.__dllonexit
...
...
dlls/msvcrt/misc.c
View file @
b5465d96
...
...
@@ -542,3 +542,12 @@ LONG CDECL MSVCRT__crtUnhandledException(EXCEPTION_POINTERS *ep)
SetUnhandledExceptionFilter
(
NULL
);
return
UnhandledExceptionFilter
(
ep
);
}
/*********************************************************************
* __crtSleep (MSVCR120.@)
*/
void
CDECL
MSVCRT__crtSleep
(
DWORD
timeout
)
{
TRACE
(
"(%u)
\n
"
,
timeout
);
Sleep
(
timeout
);
}
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