summaryrefslogtreecommitdiffstats
path: root/common/rop3.h
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-04-19 22:58:36 +0200
committerAlon Levy <alevy@redhat.com>2011-07-21 15:09:27 +0300
commit6bd492fa7975b90a3be31c65ba1fbafdd0002f0f (patch)
treef2a566ef234af22cd630f7a26c983af3a02c4565 /common/rop3.h
parent3dab7bda53901a80e15b98392fb8948b2f298ca1 (diff)
downloadspice-6bd492fa7975b90a3be31c65ba1fbafdd0002f0f.tar.gz
spice-6bd492fa7975b90a3be31c65ba1fbafdd0002f0f.tar.xz
spice-6bd492fa7975b90a3be31c65ba1fbafdd0002f0f.zip
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/rop3.h')
-rw-r--r--common/rop3.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/common/rop3.h b/common/rop3.h
index 02111308..549b02cd 100644
--- a/common/rop3.h
+++ b/common/rop3.h
@@ -24,11 +24,20 @@
#include "draw.h"
#include "pixman_utils.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
void do_rop3_with_pattern(uint8_t rop3, pixman_image_t *d, pixman_image_t *s, SpicePoint *src_pos,
pixman_image_t *p, SpicePoint *pat_pos);
void do_rop3_with_color(uint8_t rop3, pixman_image_t *d, pixman_image_t *s, SpicePoint *src_pos,
uint32_t rgb);
void rop3_init();
+
+#ifdef __cplusplus
+}
+#endif
+
#endif