From: Tapani Pälli Date: Fri, 23 Sep 2011 11:17:42 +0000 (+0300) Subject: xf86drm.h : wrap C code for C++ compilation/linking X-Git-Tag: submit/1.0/20121108.012404~136 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cfee5218b17a2741e5519ed44091171e01f0dbb2;p=profile%2Fivi%2Flibdrm.git xf86drm.h : wrap C code for C++ compilation/linking To enable usage of xf86drm.h from C++ programs/frameworks. Signed-off-by: Tapani Pälli [ickle: also wrap xf86drmMode.h] Signed-off-by: Chris Wilson --- diff --git a/xf86drm.h b/xf86drm.h index 20f4c78..76eb94e 100644 --- a/xf86drm.h +++ b/xf86drm.h @@ -39,6 +39,10 @@ #include #include +#if defined(__cplusplus) || defined(c_plusplus) +extern "C" { +#endif + #ifndef DRM_MAX_MINOR #define DRM_MAX_MINOR 16 #endif @@ -723,4 +727,8 @@ extern int drmHandleEvent(int fd, drmEventContextPtr evctx); extern char *drmGetDeviceNameFromFd(int fd); +#if defined(__cplusplus) || defined(c_plusplus) +} +#endif + #endif diff --git a/xf86drmMode.h b/xf86drmMode.h index ee7c454..1b1e3e2 100644 --- a/xf86drmMode.h +++ b/xf86drmMode.h @@ -33,6 +33,10 @@ * */ +#if defined(__cplusplus) || defined(c_plusplus) +extern "C" { +#endif + #include /* @@ -386,3 +390,7 @@ extern int drmModeCrtcGetGamma(int fd, uint32_t crtc_id, uint32_t size, uint16_t *red, uint16_t *green, uint16_t *blue); extern int drmModePageFlip(int fd, uint32_t crtc_id, uint32_t fb_id, uint32_t flags, void *user_data); + +#if defined(__cplusplus) || defined(c_plusplus) +} +#endif