Arbutils/CInterface/Core.h

17 lines
658 B
C++

#include "Core.hpp"
#include "../src/SignalHandling.hpp"
/// @file
std::string ExceptionHandler::_ArbutilsLastException = "";
/// @brief Returns a null-terminated C string to the last exception found.
export const char* Arbutils_C_GetLastException() { return ExceptionHandler::GetLastException(); }
#if !WINDOWS
static ArbUt::SignalHandling sh;
/// @brief Sets a callback to a function to run when a signal occurs.
export void Arbutils_C_SetSignalCallback(void (*callback)(const char*)) { sh.SetCallback(callback); }
#else
export void Arbutils_C_SetSignalCallback(void (*)(const char*)) { }
export void Arbutils_C_RaiseSignal() { raise(SIGSEGV); }
#endif