mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-27 06:34:11 +00:00
white space
This commit is contained in:
parent
a726e33bf1
commit
4d3ca27227
1 changed files with 74 additions and 75 deletions
|
@ -35,8 +35,7 @@
|
|||
#include "QF/quakeio.h"
|
||||
|
||||
#define MAX_ENT_LEAFS 16
|
||||
typedef struct edict_s
|
||||
{
|
||||
typedef struct edict_s {
|
||||
qboolean free;
|
||||
link_t area; // linked to a division node or leaf
|
||||
|
||||
|
@ -64,10 +63,10 @@ typedef struct pr_resource_s pr_resource_t;
|
|||
void PR_Init (void);
|
||||
void PR_Init_Cvars (void);
|
||||
|
||||
void PR_PrintStatement (progs_t * pr, dstatement_t *s);
|
||||
void PR_EnterFunction (progs_t * pr, dfunction_t *f);
|
||||
void PR_PrintStatement (progs_t *pr, dstatement_t *s);
|
||||
void PR_EnterFunction (progs_t *pr, dfunction_t *f);
|
||||
void PR_ExecuteProgram (progs_t *pr, func_t fnum);
|
||||
void PR_LoadProgsFile (progs_t * pr, QFile *file, int size, int edicts,
|
||||
void PR_LoadProgsFile (progs_t *pr, QFile *file, int size, int edicts,
|
||||
int zone);
|
||||
void PR_LoadProgs (progs_t *pr, const char *progsname, int edicts, int zone);
|
||||
int PR_LoadStrings (progs_t *pr);
|
||||
|
@ -77,7 +76,7 @@ int PR_Check_Opcodes (progs_t *pr);
|
|||
|
||||
void PR_Profile_f (void);
|
||||
|
||||
void ED_ClearEdict (progs_t * pr, edict_t *e, int val);
|
||||
void ED_ClearEdict (progs_t *pr, edict_t *e, int val);
|
||||
edict_t *ED_Alloc (progs_t *pr);
|
||||
void ED_Free (progs_t *pr, edict_t *ed);
|
||||
|
||||
|
@ -182,7 +181,7 @@ typedef struct {
|
|||
} builtin_t;
|
||||
|
||||
ddef_t *PR_FindGlobal (progs_t *pr, const char *name);
|
||||
ddef_t *ED_GlobalAtOfs (progs_t * pr, int ofs);
|
||||
ddef_t *ED_GlobalAtOfs (progs_t *pr, int ofs);
|
||||
|
||||
pr_type_t *PR_GetGlobalPointer (progs_t *pr, const char *name);
|
||||
func_t PR_GetFunctionIndex (progs_t *pr, const char *name);
|
||||
|
@ -258,7 +257,7 @@ const char *PR_Get_Source_File (progs_t *pr, pr_lineno_t *lineno);
|
|||
const char *PR_Get_Source_Line (progs_t *pr, unsigned int addr);
|
||||
ddef_t *PR_Get_Local_Def (progs_t *pr, int offs);
|
||||
void PR_DumpState (progs_t *pr);
|
||||
void PR_StackTrace (progs_t * pr);
|
||||
void PR_StackTrace (progs_t *pr);
|
||||
|
||||
extern struct cvar_s *pr_debug;
|
||||
extern struct cvar_s *pr_deadbeef_ents;
|
||||
|
@ -286,7 +285,7 @@ typedef struct {
|
|||
} prstack_t;
|
||||
|
||||
typedef struct strref_s {
|
||||
struct strref_s * next;
|
||||
struct strref_s *next;
|
||||
char *string;
|
||||
int count;
|
||||
} strref_t;
|
||||
|
@ -312,7 +311,7 @@ struct progs_s {
|
|||
strref_t *static_strings;
|
||||
strref_t **dynamic_strings;
|
||||
strref_t *free_string_refs;
|
||||
unsigned int dyn_str_size;
|
||||
unsigned dyn_str_size;
|
||||
struct hashtab_s *strref_hash;
|
||||
int num_strings;
|
||||
|
||||
|
|
Loading…
Reference in a new issue