mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
msvcr110: Add __crtTerminateProcess implementation.
This commit is contained in:
parent
07566faaca
commit
460991a8e9
2 changed files with 9 additions and 1 deletions
|
@ -62,3 +62,11 @@ int CDECL MSVCR110__crtGetShowWindowMode(void)
|
||||||
TRACE("window=%d\n", si.wShowWindow);
|
TRACE("window=%d\n", si.wShowWindow);
|
||||||
return si.wShowWindow;
|
return si.wShowWindow;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* __crtTerminateProcess (MSVCR110.@)
|
||||||
|
*/
|
||||||
|
int CDECL MSVCR110__crtTerminateProcess(UINT exit_code)
|
||||||
|
{
|
||||||
|
return TerminateProcess(GetCurrentProcess(), exit_code);
|
||||||
|
}
|
||||||
|
|
|
@ -929,7 +929,7 @@
|
||||||
@ cdecl __crtLCMapStringW(long long wstr long ptr long long long) msvcrt.__crtLCMapStringW
|
@ cdecl __crtLCMapStringW(long long wstr long ptr long long long) msvcrt.__crtLCMapStringW
|
||||||
@ stub -arch=i386,win64 __crtSetThreadStackGuarantee
|
@ stub -arch=i386,win64 __crtSetThreadStackGuarantee
|
||||||
@ cdecl __crtSetUnhandledExceptionFilter(ptr) MSVCR110__crtSetUnhandledExceptionFilter
|
@ cdecl __crtSetUnhandledExceptionFilter(ptr) MSVCR110__crtSetUnhandledExceptionFilter
|
||||||
@ stub -arch=i386,win64 __crtTerminateProcess
|
@ cdecl -arch=i386,win64 __crtTerminateProcess(long) MSVCR110__crtTerminateProcess
|
||||||
@ stub -arch=i386,win64 __crtUnhandledException
|
@ stub -arch=i386,win64 __crtUnhandledException
|
||||||
@ cdecl __daylight() msvcrt.__daylight
|
@ cdecl __daylight() msvcrt.__daylight
|
||||||
@ cdecl __dllonexit(ptr ptr ptr) msvcrt.__dllonexit
|
@ cdecl __dllonexit(ptr ptr ptr) msvcrt.__dllonexit
|
||||||
|
|
Loading…
Reference in a new issue