34 lines
579 B
C++
34 lines
579 B
C++
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define sphaira_USE_LOG 1
|
|
|
|
#include <stdarg.h>
|
|
|
|
#if sphaira_USE_LOG
|
|
bool log_file_init();
|
|
bool log_nxlink_init();
|
|
void log_file_exit();
|
|
void log_nxlink_exit();
|
|
void log_write(const char* s, ...) __attribute__ ((format (printf, 1, 2)));
|
|
void log_write_arg(const char* s, va_list* v);
|
|
#else
|
|
inline bool log_file_init() {
|
|
return true;
|
|
}
|
|
inline bool log_nxlink_init() {
|
|
return true;
|
|
}
|
|
#define log_file_exit()
|
|
#define log_nxlink_exit()
|
|
#define log_write(...)
|
|
#define log_write_arg(...)
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|