mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-06-02 18:11:12 +00:00
added uniform #ifdef _xxx_H encapsulation and appropriate includes to avoid header dependencies and circular conflicts
(work in progress, need to clean .c files as well)
This commit is contained in:
parent
4a5ffaed66
commit
440b2aec18
41 changed files with 315 additions and 171 deletions
|
@ -19,6 +19,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
*/
|
||||
// screen.h
|
||||
|
||||
#ifndef _SCREEN_H
|
||||
#define _SCREEN_H
|
||||
|
||||
#include "common.h"
|
||||
#include "cvar.h"
|
||||
|
||||
void SCR_InitCvars (void);
|
||||
void SCR_Init (void);
|
||||
|
||||
|
@ -56,3 +62,5 @@ extern int scr_copyeverything;
|
|||
extern qboolean scr_skipupdate;
|
||||
|
||||
extern qboolean block_drawing;
|
||||
|
||||
#endif // _SCREEN_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue