mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-30 00:30:38 +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
|
@ -18,6 +18,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
*/
|
||||
|
||||
#ifndef _PROGS_H
|
||||
#define _PROGS_H
|
||||
|
||||
#include "common.h"
|
||||
#include "protocol.h"
|
||||
#include "pr_comp.h" // defs shared with qcc
|
||||
#include "progdefs.h" // generated by program cdefs
|
||||
|
||||
|
@ -145,3 +150,4 @@ extern int num_prstr;
|
|||
char *PR_GetString(int num);
|
||||
int PR_SetString(char *s);
|
||||
|
||||
#endif // _PROGS_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue