diff options
author | Brian Paul <[email protected]> | 2014-12-15 16:36:27 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-12-16 07:52:41 -0700 |
commit | 3ebc135b4ed261cb7959dd7429773b25ce545102 (patch) | |
tree | c5ea5bf801671ea249abfa0dcf6266d1b2f713bb /src/mesa/main/enums.h | |
parent | 4b342fbbb739b4266ec6bdaa59d1807b75199061 (diff) |
mesa: put extern "C" in header files
Reviewed-by: Anuj Phogat <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/main/enums.h')
-rw-r--r-- | src/mesa/main/enums.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/main/enums.h b/src/mesa/main/enums.h index 36c053d4bc5..66bdd53bbab 100644 --- a/src/mesa/main/enums.h +++ b/src/mesa/main/enums.h @@ -37,6 +37,11 @@ #define _ENUMS_H_ +#ifdef __cplusplus +extern "C" { +#endif + + extern const char *_mesa_lookup_enum_by_nr( int nr ); /* Get the name of an enum given that it is a primitive type. Avoids @@ -44,4 +49,10 @@ extern const char *_mesa_lookup_enum_by_nr( int nr ); */ const char *_mesa_lookup_prim_by_nr( unsigned nr ); + +#ifdef __cplusplus +} +#endif + + #endif |