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