Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
361 B

#define _KERNEL32_
#include "windows.h"
void
SxspCrtRaiseExit(
PCSTR pszCaller,
int crtError
);
VOID
WINAPI
ExitProcess(
IN UINT uExitCode
)
{
SxspCrtRaiseExit(__FUNCTION__, (int)uExitCode);
}
#if !defined(_M_IX86) && !defined(_X86_)
const extern FARPROC __imp_ExitProcess = (FARPROC)&ExitProcess;
#endif