summaryrefslogtreecommitdiff
path: root/cursor
diff options
context:
space:
mode:
authorYan Wang <yan.wang@linux.intel.com>2012-05-23 14:14:30 +0800
committerKristian Høgsberg <krh@bitplanet.net>2012-05-23 09:32:03 -0400
commitd860f0cbecbb647b0c91bb1e912af0dd19831615 (patch)
tree1776d2c5f9b415cc5776946c4ad70d9d7ae9effa /cursor
parent00de1e6cce5f3389eb763d80df7135f19ccda1be (diff)
Wayland: Add missing extern "C"
Add extern "C" macro definition for C++.
Diffstat (limited to 'cursor')
-rw-r--r--cursor/wayland-cursor.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/cursor/wayland-cursor.h b/cursor/wayland-cursor.h
index 154cd84..f8bf8d1 100644
--- a/cursor/wayland-cursor.h
+++ b/cursor/wayland-cursor.h
@@ -25,6 +25,10 @@
#include <stdint.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
enum wl_cursor_type {
WL_CURSOR_BOTTOM_LEFT,
WL_CURSOR_BOTTOM_RIGHT,
@@ -75,4 +79,8 @@ wl_cursor_theme_get_cursor_by_name(struct wl_cursor_theme *theme,
struct wl_buffer *
wl_cursor_image_get_buffer(struct wl_cursor_image *image);
+#ifdef __cplusplus
+}
+#endif
+
#endif