mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-05 06:00:33 -04:00
16 lines
216 B
C
16 lines
216 B
C
#pragma once
|
|
|
|
|
|
#ifdef __cplusplus
|
|
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
|