Add another missing extern "C"
This commit is contained in:
parent
8a8ab68f1c
commit
1d7b0f54be
@ -1,6 +1,10 @@
|
|||||||
#ifndef ALCONFIG_H
|
#ifndef ALCONFIG_H
|
||||||
#define ALCONFIG_H
|
#define ALCONFIG_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
void ReadALConfig(void);
|
void ReadALConfig(void);
|
||||||
void FreeALConfig(void);
|
void FreeALConfig(void);
|
||||||
|
|
||||||
@ -14,4 +18,8 @@ int ConfigValueUInt(const char *devName, const char *blockName, const char *keyN
|
|||||||
int ConfigValueFloat(const char *devName, const char *blockName, const char *keyName, float *ret);
|
int ConfigValueFloat(const char *devName, const char *blockName, const char *keyName, float *ret);
|
||||||
int ConfigValueBool(const char *devName, const char *blockName, const char *keyName, int *ret);
|
int ConfigValueBool(const char *devName, const char *blockName, const char *keyName, int *ret);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
} // extern "C"
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* ALCONFIG_H */
|
#endif /* ALCONFIG_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user