From f9d41588b8d76d5851f666ecd90c248ef42115ea Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 17 May 2012 06:22:50 +0000 Subject: [PATCH] Eo: Added extern "C" for the C++ fellows. Oops, forgot, thanks to Yakov for letting me know. SVN revision: 71189 --- legacy/eobj/lib/Eo.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/legacy/eobj/lib/Eo.h b/legacy/eobj/lib/Eo.h index 7517ee2497..b90bcceaa6 100644 --- a/legacy/eobj/lib/Eo.h +++ b/legacy/eobj/lib/Eo.h @@ -30,6 +30,10 @@ # endif #endif /* ! _WIN32 */ +#ifdef __cplusplus +extern "C" { +#endif + /** * @var _eo_class_creation_lock * This variable is used for locking purposes in the class_get function @@ -1138,4 +1142,8 @@ EAPI extern const Eo_Event_Description _EO_EV_DEL; * @} */ +#ifdef __cplusplus +} +#endif + #endif