windows-nt/Source/XPSP1/NT/base/win32/fusion/dll/whistler/exitproc.c
2020-09-26 16:20:57 +08:00

22 lines
340 B
C

#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