From 3ebc135b4ed261cb7959dd7429773b25ce545102 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 15 Dec 2014 16:36:27 -0700 Subject: mesa: put extern "C" in header files Reviewed-by: Anuj Phogat Reviewed-by: Jose Fonseca --- src/mesa/main/samplerobj.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/mesa/main/samplerobj.h') diff --git a/src/mesa/main/samplerobj.h b/src/mesa/main/samplerobj.h index 7d80b383d74..1bb3193e432 100644 --- a/src/mesa/main/samplerobj.h +++ b/src/mesa/main/samplerobj.h @@ -27,6 +27,11 @@ #ifndef SAMPLEROBJ_H #define SAMPLEROBJ_H +#ifdef __cplusplus +extern "C" { +#endif + + struct dd_function_table; static inline struct gl_sampler_object * @@ -103,4 +108,8 @@ _mesa_GetSamplerParameterIiv(GLuint sampler, GLenum pname, GLint *params); void GLAPIENTRY _mesa_GetSamplerParameterIuiv(GLuint sampler, GLenum pname, GLuint *params); +#ifdef __cplusplus +} +#endif + #endif /* SAMPLEROBJ_H */ -- cgit v1.2.3