added extern "C" for C++ (bug 930933)
authorBrian Paul <brian.paul@tungstengraphics.com>
Fri, 9 Apr 2004 17:18:22 +0000 (17:18 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 9 Apr 2004 17:18:22 +0000 (17:18 +0000)
include/GL/miniglx.h

index 8c246a05cf5c2f3f4dc45889633f9bed606a5f56..41e20936285e45523e107c37e972f63b0d3a7bdf 100644 (file)
@@ -1,10 +1,8 @@
-/* $Id: miniglx.h,v 1.3 2004/03/24 15:59:44 brianp Exp $ */
-
 /*
  * Mesa 3-D graphics library
- * Version:  5.0
+ * Version:  6.1
  *
- * Copyright (C) 1999-2002  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2004  Brian Paul   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
 #include <GL/gl.h>
 #include <stdlib.h>
 
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
 /**
  * \name Replacement Xlib/GLX types
  */
@@ -439,4 +443,8 @@ glXGetVisualFromFBConfig( Display *dpy, GLXFBConfig config );
 /*@}*/
 
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* MINIGLX_H */