OSSIA
Open Scenario System for Interactive Application
ossia_log.h
1 #ifndef OSSIA_LOG_H
2 #define OSSIA_LOG_H
3 #include <ossia_export.h>
4 
5 #if defined(__cplusplus)
6 extern "C" {
7 #endif
8 
9 typedef void (*ossia_log_fun_t)(const char*);
10 OSSIA_EXPORT
11 void ossia_set_debug_logger(ossia_log_fun_t fp);
12 OSSIA_EXPORT
13 void ossia_log_error(const char* error);
14 
15 #if defined(__cplusplus)
16 }
17 #endif
18 #endif