diff options
Diffstat (limited to 'Alc/logging.h')
-rw-r--r-- | Alc/logging.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Alc/logging.h b/Alc/logging.h index 18093b75..785771c8 100644 --- a/Alc/logging.h +++ b/Alc/logging.h @@ -10,6 +10,10 @@ #define DECL_FORMAT(x, y, z) #endif +#ifdef __cplusplus +extern "C" { +#endif + extern FILE *LogFile; #if defined(__GNUC__) && !defined(_WIN32) @@ -58,4 +62,8 @@ extern enum LogLevel LogLevel; LOG_ANDROID(ANDROID_LOG_ERROR, __VA_ARGS__); \ } while(0) +#ifdef __cplusplus +} /* extern "C" */ +#endif + #endif /* LOGGING_H */ |