mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-05 06:00:33 -04:00
24 lines
377 B
C
24 lines
377 B
C
#ifndef _SKELDAL_LOGFILE_HEADER
|
|
#define _SKELDAL_LOGFILE_HEADER
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
#define __attribute__(...)
|
|
#endif
|
|
|
|
#ifdef LOGFILE
|
|
void send_log_impl(const char *format, ...) __attribute__((format(printf, 1, 2)));
|
|
#define SEND_LOG(...) send_log_impl( __VA_ARGS__)
|
|
#else
|
|
#define SEND_LOG(...)
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|