Add GLAPIENTRY function decorations for correct operation on Windows.
[mesa.git] / src / mesa / main / get.h
index 530a0b5f05f8167469f7c32d435e99951f4fd312..9b47b230a9812b2a71f236b9f1a7b562d61280e1 100644 (file)
@@ -1,10 +1,13 @@
-/* $Id: get.h,v 1.4 2000/11/22 07:32:17 joukj Exp $ */
+/**
+ * \file get.h
+ * State query functions.
+ */
 
 /*
  * Mesa 3-D graphics library
- * Version:  3.3
+ * Version:  3.5
  *
- * Copyright (C) 1999  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2001  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 "mtypes.h"
 
 
-extern void
+extern void GLAPIENTRY
 _mesa_GetBooleanv( GLenum pname, GLboolean *params );
 
-extern void
+extern void GLAPIENTRY
 _mesa_GetDoublev( GLenum pname, GLdouble *params );
 
-extern void
+extern void GLAPIENTRY
 _mesa_GetFloatv( GLenum pname, GLfloat *params );
 
-extern void
+extern void GLAPIENTRY
 _mesa_GetIntegerv( GLenum pname, GLint *params );
 
-extern void
+extern void GLAPIENTRY
 _mesa_GetPointerv( GLenum pname, GLvoid **params );
 
-extern const GLubyte *
+extern const GLubyte * GLAPIENTRY
 _mesa_GetString( GLenum name );
 
-extern GLenum
+extern GLenum GLAPIENTRY
 _mesa_GetError( void );
 
-
-
 #endif
-