From dfb06b75f208ba69f32a91fe2c3fd7514edf73bc Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Thu, 8 Apr 2010 07:49:38 +0000 Subject: [PATCH] Make these extern "C" so they play nice with all tools. --- src/osd/osdcore.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/osd/osdcore.h b/src/osd/osdcore.h index 6e31d523740..5a0e4c13a2d 100644 --- a/src/osd/osdcore.h +++ b/src/osd/osdcore.h @@ -50,6 +50,9 @@ #include "osdcomm.h" +#ifdef __cplusplus +extern "C" { +#endif /*************************************************************************** @@ -884,4 +887,8 @@ file_error osd_get_full_path(char **dst, const char *path); const char *osd_get_volume_name(int idx); #endif +#ifdef __cplusplus +} +#endif + #endif /* __OSDEPEND_H__ */