summaryrefslogtreecommitdiff
path: root/src/gbm
diff options
context:
space:
mode:
authorJørgen Lind <jorgen.lind@nokia.com>2011-07-19 22:52:20 +0200
committerKristian Høgsberg <krh@bitplanet.net>2011-07-19 16:30:07 -0700
commit496bf3822a724127b2632596dc45648fdeda0afb (patch)
treea0a46e85d6dd4486f6531118c99038610f374895 /src/gbm
parentd84791a72b33f96fab54ff2399e8053c50205454 (diff)
Make it possible to use gbm with c++
NOTE: This is a candiate for 7.11
Diffstat (limited to 'src/gbm')
-rw-r--r--src/gbm/main/gbm.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gbm/main/gbm.h b/src/gbm/main/gbm.h
index d79a03e4b3f..05d2292dc75 100644
--- a/src/gbm/main/gbm.h
+++ b/src/gbm/main/gbm.h
@@ -28,6 +28,11 @@
#ifndef _GBM_H_
#define _GBM_H_
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
#define __GBM__ 1
#include <stdint.h>
@@ -97,4 +102,8 @@ gbm_bo_get_handle(struct gbm_bo *bo);
void
gbm_bo_destroy(struct gbm_bo *bo);
+#ifdef __cplusplus
+}
+#endif
+
#endif