[CIFIX]add extern 'C' in C++ code

This commit is contained in:
liuwentan
2022-08-11 10:50:41 +08:00
parent 14703ec4b4
commit 85c28ff17e
12 changed files with 145 additions and 24 deletions

View File

@@ -10,10 +10,19 @@
#pragma once
#ifdef __cpluscplus
extern "C"
{
#endif
#define log_debug(x, ...)
#define log_info(x, ...)
#define log_notice(x, ...)
#define log_error(x, ...)
#define log_error(x, ...)
#ifdef __cpluscplus
}
#endif