mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 23:30:10 +01:00
added DMesaProc type to prevent gcc 3.4.3 warnings
This commit is contained in:
parent
654dccfd85
commit
8b563fd4c5
1 changed files with 4 additions and 3 deletions
|
|
@ -23,9 +23,9 @@
|
|||
*/
|
||||
|
||||
/*
|
||||
* DOS/DJGPP device driver v1.6 for Mesa
|
||||
* DOS/DJGPP device driver v1.7 for Mesa
|
||||
*
|
||||
* Copyright (C) 2002 - Borca Daniel
|
||||
* Copyright (C) 2002 - Daniel Borca
|
||||
* Email : dborca@users.sourceforge.net
|
||||
* Web : http://www.geocities.com/dborca
|
||||
*/
|
||||
|
|
@ -138,7 +138,8 @@ void DMesaSetCI (int ndx, GLfloat red, GLfloat green, GLfloat blue);
|
|||
/*
|
||||
* DMesa functions
|
||||
*/
|
||||
void *DMesaGetProcAddress (const char *name);
|
||||
typedef void (*DMesaProc) (void);
|
||||
DMesaProc DMesaGetProcAddress (const char *name);
|
||||
|
||||
/*
|
||||
* DMesa state retrieval.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue