Files
RedHotRoast-ios/HybridCLRData/LocalIl2CppData-OSXEditor/il2cpp/libil2cpp/os/Win32/CrashHelpers.cpp
T
2026-07-17 14:03:00 +08:00

25 lines
390 B
C++

#include "il2cpp-config.h"
#include "os/CrashHelpers.h"
#if IL2CPP_TARGET_WINDOWS && !IL2CPP_USE_GENERIC_CRASH_HELPERS
#include "WindowsHeaders.h"
namespace il2cpp
{
namespace os
{
void CrashHelpers::CrashImpl()
{
// __fastfail() is available since VS2012
#if _MSC_VER >= 1700
__fastfail(FAST_FAIL_FATAL_APP_EXIT);
#else
abort();
#endif
}
}
}
#endif