mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
Whoops, missed some stuff that needed to be in idparse.h
This commit is contained in:
parent
a93b221272
commit
439f9838d3
6 changed files with 6 additions and 4 deletions
|
@ -63,10 +63,6 @@ typedef struct cbuf_s {
|
|||
|
||||
extern cbuf_t *cbuf_active;
|
||||
|
||||
extern const char *com_token;
|
||||
const char *COM_Parse (const char *data);
|
||||
void COM_TokenizeString (const char *str, cbuf_args_t *args);
|
||||
|
||||
cbuf_args_t *Cbuf_ArgsNew (void);
|
||||
void Cbuf_ArgsDelete (cbuf_args_t *);
|
||||
void Cbuf_ArgsAdd (cbuf_args_t *args, const char *arg);
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
|
||||
*/
|
||||
|
||||
extern const char *com_token;
|
||||
|
||||
const char *COM_Parse (const char *data);
|
||||
void COM_TokenizeString (const char *str, cbuf_args_t *args);
|
||||
void COM_extract_line (cbuf_t *cbuf);
|
||||
|
|
|
@ -40,6 +40,7 @@ static const char rcsid[] =
|
|||
#include <stdio.h>
|
||||
|
||||
#include "QF/cbuf.h"
|
||||
#include "QF/idparse.h"
|
||||
#include "QF/crc.h"
|
||||
#include "QF/cvar.h"
|
||||
#include "QF/hash.h"
|
||||
|
|
|
@ -32,6 +32,7 @@ static const char rcsid[] =
|
|||
#endif
|
||||
|
||||
#include "QF/cbuf.h"
|
||||
#include "QF/idparse.h"
|
||||
#include "QF/cmd.h"
|
||||
#include "QF/cvar.h"
|
||||
#include "QF/va.h"
|
||||
|
|
|
@ -43,6 +43,7 @@ static const char rcsid[] =
|
|||
#include <ctype.h>
|
||||
|
||||
#include "QF/cbuf.h"
|
||||
#include "QF/idparse.h"
|
||||
#include "QF/checksum.h"
|
||||
#include "QF/clip_hull.h"
|
||||
#include "QF/cmd.h"
|
||||
|
|
|
@ -55,6 +55,7 @@ static const char rcsid[] =
|
|||
#include <stdio.h>
|
||||
|
||||
#include <QF/cbuf.h>
|
||||
#include <QF/idparse.h>
|
||||
#include <QF/crc.h>
|
||||
#include <QF/dstring.h>
|
||||
#include <QF/hash.h>
|
||||
|
|
Loading…
Reference in a new issue