mesa: Wrap extensions.h declarations with extern "C".

This should fix the MSVC linker failures that arose with commit
5e2d25894b.

Trivial.
This commit is contained in:
Jose Fonseca 2016-06-10 11:00:42 +01:00
parent f48f344700
commit f93c22109e
1 changed files with 8 additions and 0 deletions

View File

@ -38,6 +38,10 @@
#include "glheader.h"
#ifdef __cplusplus
extern "C" {
#endif
struct gl_context;
struct gl_extensions;
@ -102,4 +106,8 @@ _mesa_has_##name_str(const struct gl_context *ctx) \
extern struct gl_extensions _mesa_extension_override_enables;
extern struct gl_extensions _mesa_extension_override_disables;
#ifdef __cplusplus
}
#endif
#endif