mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 17:01:53 +00:00
[SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
This commit is contained in:
parent
d09f611410
commit
527f2f9057
20177 changed files with 0 additions and 1312061 deletions
55
lib/sdk/crt/stdlib/_exit.c
Normal file
55
lib/sdk/crt/stdlib/_exit.c
Normal file
|
@ -0,0 +1,55 @@
|
|||
/* taken from wine exit.c */
|
||||
#include <precomp.h>
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
void _cexit( void )
|
||||
{
|
||||
LOCK_EXIT;
|
||||
__call_atexit();
|
||||
UNLOCK_EXIT;
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
void _c_exit( void )
|
||||
{
|
||||
/* All cleanup is done on DLL detach; Return to caller */
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
void _exit(int exitcode)
|
||||
{
|
||||
ExitProcess(exitcode);
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
void exit(int exitcode)
|
||||
{
|
||||
#if 0
|
||||
HMODULE hmscoree;
|
||||
static const WCHAR mscoreeW[] = {'m','s','c','o','r','e','e',0};
|
||||
void (WINAPI *pCorExitProcess)(int);
|
||||
#endif
|
||||
WARN("exit(%d) called\n",exitcode);
|
||||
_cexit();
|
||||
#if 0
|
||||
hmscoree = GetModuleHandleW(mscoreeW);
|
||||
|
||||
if (hmscoree)
|
||||
{
|
||||
pCorExitProcess = (void*)GetProcAddress(hmscoree, "CorExitProcess");
|
||||
|
||||
if (pCorExitProcess)
|
||||
pCorExitProcess(exitcode);
|
||||
}
|
||||
#endif
|
||||
ExitProcess(exitcode);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue