wgl: Add const qualifier to global constant data.

This commit is contained in:
José Fonseca
2009-04-09 10:54:00 +01:00
parent 8131123eff
commit 7e563200b8
2 changed files with 5 additions and 5 deletions
@@ -285,7 +285,7 @@ struct attrib_match_info
BOOL exact;
};
static struct attrib_match_info attrib_match[] = {
static const struct attrib_match_info attrib_match[] = {
/* WGL_ARB_pixel_format */
{ WGL_DRAW_TO_WINDOW_ARB, 0, TRUE },
@@ -338,7 +338,7 @@ score_pixelformats(
int expected_value )
{
uint i;
struct attrib_match_info *ami = NULL;
const struct attrib_match_info *ami = NULL;
uint index;
/* Find out if a given attribute should be considered for score calculation.
@@ -40,7 +40,7 @@ struct extension_entry
#define EXTENTRY(P) { #P, (PROC) P }
static struct extension_entry extension_entries[] = {
static const struct extension_entry extension_entries[] = {
/* WGL_ARB_extensions_string */
EXTENTRY( wglGetExtensionsStringARB ),
@@ -57,9 +57,9 @@ PROC
stw_get_proc_address(
LPCSTR lpszProc )
{
struct extension_entry *entry;
const struct extension_entry *entry;
PROC p = (PROC) _glapi_get_proc_address( (const char *) lpszProc );
PROC p = (PROC) _glapi_get_proc_address( lpszProc );
if (p)
return p;