glapi: Add extern "C" to glapi_priv.h
authorAlexander von Gluck IV <kallisti5@unixzen.com>
Wed, 13 May 2015 18:22:00 +0000 (14:22 -0400)
committerAlexander von Gluck IV <kallisti5@unixzen.com>
Wed, 13 May 2015 19:26:26 +0000 (15:26 -0400)
* The Haiku glapi has a C++ wrapper around the dispatch code.

Reviewed-by: Brian Paul <brianp@vmware.com>
src/mapi/glapi/glapi_priv.h

index 50f710edc8af82e59594c01919ad68b074e6a3b0..337913acc711c2b276039861e1d305e0fcc90306 100644 (file)
@@ -49,6 +49,10 @@ typedef void *GLeglImageOES;
 #include "glapi/glapi.h"
 
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /* getproc */
 
 extern void
@@ -106,4 +110,8 @@ get_entrypoint_address(unsigned int functionOffset);
 #define MAX_EXTENSION_FUNCS 256
 
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif