Removed GLCALLBACK stuff - apparently never used anywhere.

Removed GLWINAPI stuff - only used (unnecessarily?) in enums.c
This commit is contained in:
Brian Paul 2004-11-27 03:14:57 +00:00
parent d2c1027d40
commit 568f7578d3
2 changed files with 7 additions and 19 deletions

View File

@ -1,9 +1,8 @@
/* /*
* Mesa 3-D graphics library * Mesa 3-D graphics library
* Version: 5.1 * Version: 6.3
* *
* Copyright (C) 1999-2003 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 * Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"), * copy of this software and associated documentation files (the "Software"),
@ -37,7 +36,10 @@ typedef struct {
int n; int n;
} enum_elt; } enum_elt;
enum_elt all_enums[] = /**
* XXX We should auto-generate this with a Python script someday.
*/
static enum_elt all_enums[] =
{ {
/* Boolean values */ /* Boolean values */
{ "GL_FALSE", 0 }, { "GL_FALSE", 0 },
@ -889,7 +891,7 @@ enum_elt all_enums[] =
#define Elements(x) sizeof(x)/sizeof(*x) #define Elements(x) sizeof(x)/sizeof(*x)
typedef int (GLWINAPIV *cfunc)(const void *, const void *); typedef int (*cfunc)(const void *, const void *);
static enum_elt **index1 = 0; static enum_elt **index1 = 0;
static int sorted = 0; static int sorted = 0;

View File

@ -113,15 +113,6 @@
# endif /* _STATIC_MESA support */ # endif /* _STATIC_MESA support */
# define GLAPIENTRY __stdcall # define GLAPIENTRY __stdcall
# define GLAPIENTRYP GLAPIENTRY * # define GLAPIENTRYP GLAPIENTRY *
# define GLCALLBACK __stdcall
# define GLCALLBACKP GLCALLBACK *
# if defined(__CYGWIN__)
# define GLCALLBACKPCAST *
# else
# define GLCALLBACKPCAST __stdcall *
# endif
# define GLWINAPI __stdcall
# define GLWINAPIV __cdecl
#elif !defined(BUILD_FOR_SNAP) #elif !defined(BUILD_FOR_SNAP)
/* non-Windows compilation */ /* non-Windows compilation */
# define GLAPI extern # define GLAPI extern
@ -129,11 +120,6 @@
# ifndef GLAPIENTRYP # ifndef GLAPIENTRYP
# define GLAPIENTRYP * # define GLAPIENTRYP *
# endif # endif
# define GLCALLBACK
# define GLCALLBACKP *
# define GLCALLBACKPCAST *
# define GLWINAPI
# define GLWINAPIV
#endif /* WIN32 / CYGWIN bracket */ #endif /* WIN32 / CYGWIN bracket */