Add extern "C" declarations
This commit is contained in:
parent
4b16a2a6bb
commit
e20243613e
|
@ -60,7 +60,16 @@ FILE *rarch_main_log_file(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(RARCH_INTERNAL)
|
#if defined(RARCH_INTERNAL)
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
bool rarch_main_verbosity(void);
|
bool rarch_main_verbosity(void);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#define RARCH_LOG_VERBOSE (rarch_main_verbosity())
|
#define RARCH_LOG_VERBOSE (rarch_main_verbosity())
|
||||||
#else
|
#else
|
||||||
#define RARCH_LOG_VERBOSE (true)
|
#define RARCH_LOG_VERBOSE (true)
|
||||||
|
|
Loading…
Reference in New Issue