blob: 26f34c8b590221f9551dd662241e85e558c36c14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _SPDLOG_WRAPPER_
#define _SPDLOG_WRAPPER_
#ifdef __cplusplus
#define EXTERNC extern "C"
#else
#define EXTERNC
#endif
EXTERNC int spdlogLog(int level, const char *str, ...);
#undef EXTERNC
#endif
|