diff options
author | Christophe Fergeau <cfergeau@redhat.com> | 2011-04-19 22:58:36 +0200 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2011-05-02 11:24:44 +0200 |
commit | 60373e01fa9273751b037998329645072e21e837 (patch) | |
tree | 148aaaa1cc1ceed9f7a40098267564f7b633f882 /common/rect.h | |
parent | 06c83ca99458f611d871936c9d1bf433703a8f05 (diff) |
common: add extern "C" guards to headers
Since some spice C++ code is using code from common/, the C
functions need to be marked as such for the C++ compiler, otherwise
we'll get linkage issues.
Diffstat (limited to 'common/rect.h')
-rw-r--r-- | common/rect.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common/rect.h b/common/rect.h index cdd4335..6d7c446 100644 --- a/common/rect.h +++ b/common/rect.h @@ -22,6 +22,10 @@ #include "draw.h" #include <spice/macros.h> +#ifdef __cplusplus +extern "C" { +#endif + static inline void rect_sect(SpiceRect* r, const SpiceRect* bounds) { r->left = MAX(r->left, bounds->left); @@ -73,6 +77,10 @@ static inline int rect_is_same_size(const SpiceRect *r1, const SpiceRect *r2) } #ifdef __cplusplus +} +#endif + +#ifdef __cplusplus static inline void rect_sect(SpiceRect& r, const SpiceRect& bounds) { |