windows-nt/Source/XPSP1/NT/base/win32/fusion/dll/whistler/exitproc.c

22 lines
340 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#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