mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-05 06:00:33 -04:00
22 lines
316 B
C++
22 lines
316 B
C++
#pragma once
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include <string>
|
|
#include <exception>
|
|
std::string exception_to_string(const std::exception& e);
|
|
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
void send_log_impl(const char *format, ...);
|
|
void display_error(const char *format, ...);
|
|
void throw_exception(const char *text);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
}
|
|
#endif
|