mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-06-03 10:00:56 +00:00
so that's the right way to do groups and subgroups...
This commit is contained in:
parent
c2b9d8d549
commit
6fbddc3d43
31 changed files with 265 additions and 222 deletions
|
@ -140,7 +140,7 @@ STRIP_FROM_PATH = @top_srcdir@
|
||||||
# to NO (the default) then the documentation will be excluded.
|
# to NO (the default) then the documentation will be excluded.
|
||||||
# Set it to YES to include the internal documentation.
|
# Set it to YES to include the internal documentation.
|
||||||
|
|
||||||
INTERNAL_DOCS = NO
|
INTERNAL_DOCS = YES
|
||||||
|
|
||||||
# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
|
# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
|
||||||
# file names in lower case letters. If set to YES upper case letters are also
|
# file names in lower case letters. If set to YES upper case letters are also
|
||||||
|
|
|
@ -32,10 +32,8 @@
|
||||||
#ifndef __QF_cbuf_h
|
#ifndef __QF_cbuf_h
|
||||||
#define __QF_cbuf_h
|
#define __QF_cbuf_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup cbuf Command buffer management.
|
/** \defgroup cbuf Command buffer management.
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -102,7 +100,6 @@ void Cbuf_Execute (cbuf_t *cbuf);
|
||||||
void Cbuf_Execute_Stack (cbuf_t *cbuf);
|
void Cbuf_Execute_Stack (cbuf_t *cbuf);
|
||||||
void Cbuf_Execute_Sets (cbuf_t *cbuf);
|
void Cbuf_Execute_Sets (cbuf_t *cbuf);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif//__QF_cbuf_h
|
#endif//__QF_cbuf_h
|
||||||
|
|
|
@ -29,9 +29,6 @@
|
||||||
#ifndef __checksum_h
|
#ifndef __checksum_h
|
||||||
#define __checksum_h
|
#define __checksum_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \addtogroup crc
|
/** \addtogroup crc
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
@ -42,7 +39,6 @@ unsigned int Com_BlockChecksum (const void *buffer, int length);
|
||||||
void Com_BlockFullChecksum (const void *buffer, int len, unsigned char *outbuf);
|
void Com_BlockFullChecksum (const void *buffer, int len, unsigned char *outbuf);
|
||||||
byte COM_BlockSequenceCRCByte (const byte *base, int length, int sequence);
|
byte COM_BlockSequenceCRCByte (const byte *base, int length, int sequence);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __checksum_h
|
#endif // __checksum_h
|
||||||
|
|
|
@ -29,10 +29,8 @@
|
||||||
#ifndef __QF_cmd_h
|
#ifndef __QF_cmd_h
|
||||||
#define __QF_cmd_h
|
#define __QF_cmd_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup cmd Command management.
|
/** \defgroup cmd Command management.
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -73,7 +71,6 @@ void Cmd_Exec_File (struct cbuf_s *cbuf, const char *path, int qfs);
|
||||||
extern struct cbuf_args_s *cmd_args;
|
extern struct cbuf_args_s *cmd_args;
|
||||||
extern struct cvar_s *cmd_warncmd;
|
extern struct cvar_s *cmd_warncmd;
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif//__QF_cmd_h
|
#endif//__QF_cmd_h
|
||||||
|
|
|
@ -29,10 +29,8 @@
|
||||||
#ifndef __crc_h
|
#ifndef __crc_h
|
||||||
#define __crc_h
|
#define __crc_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup crc Checksum generation.
|
/** \defgroup crc Checksum generation.
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -44,7 +42,6 @@ void CRC_ProcessBlock (byte *start, unsigned short *crcvalue, int count);
|
||||||
unsigned short CRC_Value(unsigned short crcvalue);
|
unsigned short CRC_Value(unsigned short crcvalue);
|
||||||
unsigned short CRC_Block (byte *start, int count);
|
unsigned short CRC_Block (byte *start, int count);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __crc_h
|
#endif // __crc_h
|
||||||
|
|
|
@ -29,10 +29,8 @@
|
||||||
#ifndef __cvar_h
|
#ifndef __cvar_h
|
||||||
#define __cvar_h
|
#define __cvar_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup cvar Configuration variables
|
/** \defgroup cvar Configuration variables
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -133,7 +131,6 @@ void Cvar_Shutdown (void);
|
||||||
|
|
||||||
extern cvar_t *cvar_vars;
|
extern cvar_t *cvar_vars;
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __cvar_h
|
#endif // __cvar_h
|
||||||
|
|
|
@ -30,12 +30,14 @@
|
||||||
#define _DRAW_H
|
#define _DRAW_H
|
||||||
|
|
||||||
/** \defgroup video Video Syb-sytem */
|
/** \defgroup video Video Syb-sytem */
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup video_renderer Renderer Sub-system */
|
/** \defgroup video_renderer Renderer Sub-system
|
||||||
//@{
|
\ingroup video
|
||||||
|
*/
|
||||||
|
|
||||||
/** \defgroup video_renderer_draw Generic draw functions */
|
/** \defgroup video_renderer_draw Generic draw functions
|
||||||
|
\ingroup video_renderer
|
||||||
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
#include "QF/wad.h"
|
#include "QF/wad.h"
|
||||||
|
@ -51,7 +53,7 @@ void Draw_Init (void);
|
||||||
smoothly scrolled off.
|
smoothly scrolled off.
|
||||||
\param x horizontal location of the top left corner of the character.
|
\param x horizontal location of the top left corner of the character.
|
||||||
\param y vertical location of the top left corner of the character.
|
\param y vertical location of the top left corner of the character.
|
||||||
\param chr 8 bit character to draw.
|
\param ch 8 bit character to draw.
|
||||||
\note The character drawn is from the quake character set, which is
|
\note The character drawn is from the quake character set, which is
|
||||||
(by default) standard ascii for 0x20-0x7e (white). 0xa0-0xfe is
|
(by default) standard ascii for 0x20-0x7e (white). 0xa0-0xfe is
|
||||||
also standard ascii (brown). 0x01-0x1f and 0x80-0x9f are
|
also standard ascii (brown). 0x01-0x1f and 0x80-0x9f are
|
||||||
|
@ -147,7 +149,7 @@ void Draw_Fill (int x, int y, int w, int h, int c);
|
||||||
\param x horizontal location of the upper left corner of the box
|
\param x horizontal location of the upper left corner of the box
|
||||||
\param y vertical location of the upper left corner of the box
|
\param y vertical location of the upper left corner of the box
|
||||||
\param width horizontal size in character cells of the region
|
\param width horizontal size in character cells of the region
|
||||||
\param height vertical size in character cells of the region
|
\param lines vertical size in character cells of the region
|
||||||
\param alpha transparency of the box
|
\param alpha transparency of the box
|
||||||
*/
|
*/
|
||||||
void Draw_TextBox (int x, int y, int width, int lines, byte alpha);
|
void Draw_TextBox (int x, int y, int width, int lines, byte alpha);
|
||||||
|
@ -155,8 +157,11 @@ void Draw_TextBox (int x, int y, int width, int lines, byte alpha);
|
||||||
/** Darken the screen.
|
/** Darken the screen.
|
||||||
*/
|
*/
|
||||||
void Draw_FadeScreen (void);
|
void Draw_FadeScreen (void);
|
||||||
|
//@}
|
||||||
|
|
||||||
/** \defgroup video_renderer_draw_qpic QPic functions */
|
/** \defgroup video_renderer_draw_qpic QPic functions
|
||||||
|
\ingroup video_renderer_draw
|
||||||
|
*/
|
||||||
//@{
|
//@{
|
||||||
/** Clear out the cached qpic textures.
|
/** Clear out the cached qpic textures.
|
||||||
*/
|
*/
|
||||||
|
@ -194,13 +199,9 @@ void Draw_Pic (int x, int y, qpic_t *pic);
|
||||||
\param srcy vertical qpic location of the upper left corner of the
|
\param srcy vertical qpic location of the upper left corner of the
|
||||||
sub-region
|
sub-region
|
||||||
\param width horizontal size of the sub-region to be drawn
|
\param width horizontal size of the sub-region to be drawn
|
||||||
\param width vertical size of the sub-region to be drawn
|
\param height vertical size of the sub-region to be drawn
|
||||||
*/
|
*/
|
||||||
void Draw_SubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height);
|
void Draw_SubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height);
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
|
||||||
//@}
|
|
||||||
|
|
||||||
#endif // _DRAW_H
|
#endif // _DRAW_H
|
||||||
|
|
|
@ -29,10 +29,8 @@
|
||||||
#ifndef __dstring_h
|
#ifndef __dstring_h
|
||||||
#define __dstring_h
|
#define __dstring_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup dstring Dynamic Strings
|
/** \defgroup dstring Dynamic Strings
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -157,7 +155,6 @@ int davsprintf (dstring_t *dstr, const char *fmt, va_list args);
|
||||||
int dasprintf (dstring_t *dstr, const char *fmt, ...) __attribute__((format(printf,2,3)));
|
int dasprintf (dstring_t *dstr, const char *fmt, ...) __attribute__((format(printf,2,3)));
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __dstring_h
|
#endif // __dstring_h
|
||||||
|
|
|
@ -29,10 +29,8 @@
|
||||||
#ifndef __hash_h
|
#ifndef __hash_h
|
||||||
#define __hash_h
|
#define __hash_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup hash Hash tables
|
/** \defgroup hash Hash tables
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -70,6 +68,7 @@ hashtab_t *Hash_NewTable (int tsize, const char *(*gk)(void*,void*),
|
||||||
be mixed with the non-element functions, but by default the results will
|
be mixed with the non-element functions, but by default the results will
|
||||||
be undefined.
|
be undefined.
|
||||||
|
|
||||||
|
\param tab the table configure
|
||||||
\param gh takes the same parameters as gk in Hash_NewTable
|
\param gh takes the same parameters as gk in Hash_NewTable
|
||||||
\param cmp is element 1, element 2, userdata
|
\param cmp is element 1, element 2, userdata
|
||||||
*/
|
*/
|
||||||
|
@ -104,14 +103,12 @@ int Hash_AddElement (hashtab_t *tab, void *ele);
|
||||||
/** find an element within a hash table.
|
/** find an element within a hash table.
|
||||||
\param tab the table to search
|
\param tab the table to search
|
||||||
\param key the key string identifying the element being searched for
|
\param key the key string identifying the element being searched for
|
||||||
\param ele element with info identifying the element being searched for
|
|
||||||
\return pointer to the element if found, otherwise 0.
|
\return pointer to the element if found, otherwise 0.
|
||||||
*/
|
*/
|
||||||
void *Hash_Find (hashtab_t *tab, const char *key);
|
void *Hash_Find (hashtab_t *tab, const char *key);
|
||||||
|
|
||||||
/** find an element within a hash table.
|
/** find an element within a hash table.
|
||||||
\param tab the table to search
|
\param tab the table to search
|
||||||
\param key the key string identifying the element being searched for
|
|
||||||
\param ele element with info identifying the element being searched for
|
\param ele element with info identifying the element being searched for
|
||||||
\return pointer to the element if found, otherwise 0.
|
\return pointer to the element if found, otherwise 0.
|
||||||
*/
|
*/
|
||||||
|
@ -210,7 +207,6 @@ void **Hash_GetList (hashtab_t *tab);
|
||||||
*/
|
*/
|
||||||
void Hash_Stats (hashtab_t *tab);
|
void Hash_Stats (hashtab_t *tab);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __hash_h
|
#endif // __hash_h
|
||||||
|
|
|
@ -31,9 +31,6 @@
|
||||||
#ifndef __QF_idparse_h
|
#ifndef __QF_idparse_h
|
||||||
#define __QF_idparse_h
|
#define __QF_idparse_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \addtogroup cbuf
|
/** \addtogroup cbuf
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
@ -47,7 +44,6 @@ void COM_TokenizeString (const char *str, struct cbuf_args_s *args);
|
||||||
|
|
||||||
extern struct cbuf_interpreter_s id_interp;
|
extern struct cbuf_interpreter_s id_interp;
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif//__QF_idparse_h
|
#endif//__QF_idparse_h
|
||||||
|
|
|
@ -29,10 +29,8 @@
|
||||||
#ifndef _INFO_H
|
#ifndef _INFO_H
|
||||||
#define _INFO_H
|
#define _INFO_H
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup info Info Keys
|
/** \defgroup info Info Keys
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -67,7 +65,6 @@ void Info_Destroy (info_t *info);
|
||||||
char *Info_MakeString (info_t *info, int (*filter)(const char *));
|
char *Info_MakeString (info_t *info, int (*filter)(const char *));
|
||||||
void Info_AddKeys (info_t *info, info_t *keys);
|
void Info_AddKeys (info_t *info, info_t *keys);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // _INFO_H
|
#endif // _INFO_H
|
||||||
|
|
|
@ -29,10 +29,8 @@
|
||||||
#ifndef __mathlib_h
|
#ifndef __mathlib_h
|
||||||
#define __mathlib_h
|
#define __mathlib_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup mathlib Vector and matrix functions
|
/** \defgroup mathlib Vector and matrix functions
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -319,7 +317,6 @@ VectorNormalize (vec3_t v)
|
||||||
return length;
|
return length;
|
||||||
}
|
}
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __mathlib_h
|
#endif // __mathlib_h
|
||||||
|
|
|
@ -30,9 +30,6 @@
|
||||||
#ifndef __mdfour_h
|
#ifndef __mdfour_h
|
||||||
#define __mdfour_h
|
#define __mdfour_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \addtogroup crc
|
/** \addtogroup crc
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
@ -51,7 +48,6 @@ void mdfour_update(struct mdfour *md, const unsigned char *in, int n); //old: MD
|
||||||
void mdfour_result(struct mdfour *md, unsigned char *out); // old: MD4Final
|
void mdfour_result(struct mdfour *md, unsigned char *out); // old: MD4Final
|
||||||
void mdfour(unsigned char *out, const unsigned char *in, int n);
|
void mdfour(unsigned char *out, const unsigned char *in, int n);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __mdfour_h
|
#endif // __mdfour_h
|
||||||
|
|
|
@ -28,10 +28,8 @@
|
||||||
#ifndef _MSG_H
|
#ifndef _MSG_H
|
||||||
#define _MSG_H
|
#define _MSG_H
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup msg Message reading and writing
|
/** \defgroup msg Message reading and writing
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -76,7 +74,6 @@ void MSG_ReadAngleV (qmsg_t *msg, vec3_t angles);
|
||||||
float MSG_ReadAngle16 (qmsg_t *msg);
|
float MSG_ReadAngle16 (qmsg_t *msg);
|
||||||
int MSG_ReadUTF8 (qmsg_t *msg);
|
int MSG_ReadUTF8 (qmsg_t *msg);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -32,9 +32,6 @@
|
||||||
#ifndef __qf_pak_h
|
#ifndef __qf_pak_h
|
||||||
#define __qf_pak_h
|
#define __qf_pak_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \addtogroup pak
|
/** \addtogroup pak
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
@ -52,7 +49,6 @@ typedef struct {
|
||||||
int dirlen;
|
int dirlen;
|
||||||
} dpackheader_t;
|
} dpackheader_t;
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif//__qf_pak_h
|
#endif//__qf_pak_h
|
||||||
|
|
|
@ -31,10 +31,8 @@
|
||||||
#ifndef __QF_pakfile_h
|
#ifndef __QF_pakfile_h
|
||||||
#define __QF_pakfile_h
|
#define __QF_pakfile_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup pak pakfile proccessing
|
/** \defgroup pak pakfile proccessing
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -67,7 +65,6 @@ int pack_add (pack_t *pack, const char *filename);
|
||||||
int pack_extract (pack_t *pack, dpackfile_t *pf);
|
int pack_extract (pack_t *pack, dpackfile_t *pf);
|
||||||
dpackfile_t *pack_find_file (pack_t *pack, const char *filename);
|
dpackfile_t *pack_find_file (pack_t *pack, const char *filename);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif//__QF_pakfile_h
|
#endif//__QF_pakfile_h
|
||||||
|
|
|
@ -29,10 +29,8 @@
|
||||||
#ifndef __QF_plugin_h_
|
#ifndef __QF_plugin_h_
|
||||||
#define __QF_plugin_h_
|
#define __QF_plugin_h_
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup plugin Plugins
|
/** \defgroup plugin Plugins
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -117,7 +115,6 @@ void PI_Shutdown (void);
|
||||||
|
|
||||||
// FIXME: we need a generic function to initialize unused fields
|
// FIXME: we need a generic function to initialize unused fields
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __QF_plugin_h_
|
#endif // __QF_plugin_h_
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -31,9 +31,6 @@
|
||||||
#ifndef __qargs_h
|
#ifndef __qargs_h
|
||||||
#define __qargs_h
|
#define __qargs_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \addtogroup misc
|
/** \addtogroup misc
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
@ -51,7 +48,6 @@ void COM_Init (void);
|
||||||
void COM_Init_Cvars (void);
|
void COM_Init_Cvars (void);
|
||||||
void COM_InitArgv (int argc, const char **argv);
|
void COM_InitArgv (int argc, const char **argv);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __qargs_h
|
#endif // __qargs_h
|
||||||
|
|
|
@ -31,10 +31,8 @@
|
||||||
#ifndef __qendian_h
|
#ifndef __qendian_h
|
||||||
#define __qendian_h
|
#define __qendian_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup qendian Endian handling functions
|
/** \defgroup qendian Endian handling functions
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -96,7 +94,6 @@ byte ReadByte (struct QFile_s *file);
|
||||||
unsigned short ReadShort (struct QFile_s *file);
|
unsigned short ReadShort (struct QFile_s *file);
|
||||||
unsigned int ReadLong (struct QFile_s *file);
|
unsigned int ReadLong (struct QFile_s *file);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __qendian_h
|
#endif // __qendian_h
|
||||||
|
|
|
@ -29,10 +29,8 @@
|
||||||
#ifndef __QF_qfplist_h_
|
#ifndef __QF_qfplist_h_
|
||||||
#define __QF_qfplist_h_
|
#define __QF_qfplist_h_
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup qfplist Property lists
|
/** \defgroup qfplist Property lists
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -250,7 +248,6 @@ typedef struct pldata_s { // Unparsed property list string
|
||||||
const char *error;
|
const char *error;
|
||||||
} pldata_t;
|
} pldata_t;
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __QF_qfplist_h_
|
#endif // __QF_qfplist_h_
|
||||||
|
|
|
@ -31,10 +31,8 @@
|
||||||
#ifndef __quakefs_h
|
#ifndef __quakefs_h
|
||||||
#define __quakefs_h
|
#define __quakefs_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup quakefs Quake Filesystem
|
/** \defgroup quakefs Quake Filesystem
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -132,7 +130,6 @@ void QFS_FilelistFree (filelist_t *list);
|
||||||
// FIXME: This is here temporarily until fs_usercfg gets sorted out
|
// FIXME: This is here temporarily until fs_usercfg gets sorted out
|
||||||
char *expand_squiggle (const char *path);
|
char *expand_squiggle (const char *path);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __quakefs_h
|
#endif // __quakefs_h
|
||||||
|
|
|
@ -32,10 +32,8 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup quakeio File IO
|
/** \defgroup quakeio File IO
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -63,7 +61,6 @@ int Qflush(QFile *file);
|
||||||
int Qeof(QFile *file);
|
int Qeof(QFile *file);
|
||||||
const char *Qgetline(QFile *file);
|
const char *Qgetline(QFile *file);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif /*__quakeio_h*/
|
#endif /*__quakeio_h*/
|
||||||
|
|
|
@ -20,10 +20,8 @@
|
||||||
#ifndef __QF_script_h
|
#ifndef __QF_script_h
|
||||||
#define __QF_script_h
|
#define __QF_script_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup script Scripts
|
/** \defgroup script Scripts
|
||||||
|
\ingroup utils
|
||||||
Line oriented script parsing. Multiple scripts being parsed at the same
|
Line oriented script parsing. Multiple scripts being parsed at the same
|
||||||
time is supported.
|
time is supported.
|
||||||
*/
|
*/
|
||||||
|
@ -90,7 +88,6 @@ qboolean Script_GetToken (script_t *script, qboolean crossline);
|
||||||
*/
|
*/
|
||||||
void Script_UngetToken (script_t *script);
|
void Script_UngetToken (script_t *script);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif//__QF_script_h
|
#endif//__QF_script_h
|
||||||
|
|
|
@ -28,10 +28,8 @@
|
||||||
#ifndef __sizebuf_h
|
#ifndef __sizebuf_h
|
||||||
#define __sizebuf_h
|
#define __sizebuf_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup sizebuf Fixed Size Buffers
|
/** \defgroup sizebuf Fixed Size Buffers
|
||||||
|
\ingroup utils
|
||||||
Fixed size buffer management
|
Fixed size buffer management
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
@ -54,7 +52,6 @@ void *SZ_GetSpace (sizebuf_t *buf, int length);
|
||||||
void SZ_Write (sizebuf_t *buf, const void *data, int length);
|
void SZ_Write (sizebuf_t *buf, const void *data, int length);
|
||||||
void SZ_Print (sizebuf_t *buf, const char *data); // strcats onto the sizebuf
|
void SZ_Print (sizebuf_t *buf, const char *data); // strcats onto the sizebuf
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __sizebuf_h
|
#endif // __sizebuf_h
|
||||||
|
|
|
@ -29,10 +29,8 @@
|
||||||
#ifndef __sys_h
|
#ifndef __sys_h
|
||||||
#define __sys_h
|
#define __sys_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup sys Portability
|
/** \defgroup sys Portability
|
||||||
|
\ingroup utils
|
||||||
Non-portable functions
|
Non-portable functions
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
@ -114,6 +112,5 @@ void Sys_DebugLog(const char *file, const char *fmt, ...) __attribute__((format(
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
//@}
|
//@}
|
||||||
//@}
|
|
||||||
|
|
||||||
#endif // __sys_h
|
#endif // __sys_h
|
||||||
|
|
|
@ -30,9 +30,6 @@
|
||||||
#ifndef __va_h
|
#ifndef __va_h
|
||||||
#define __va_h
|
#define __va_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \addtogroup misc
|
/** \addtogroup misc
|
||||||
Formatted printing.
|
Formatted printing.
|
||||||
*/
|
*/
|
||||||
|
@ -43,7 +40,6 @@ char *va(const char *format, ...) __attribute__((format(printf,1,2)));
|
||||||
// does a varargs printf into a malloced buffer
|
// does a varargs printf into a malloced buffer
|
||||||
char *nva(const char *format, ...) __attribute__((format(printf,1,2)));
|
char *nva(const char *format, ...) __attribute__((format(printf,1,2)));
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __va_h
|
#endif // __va_h
|
||||||
|
|
|
@ -29,10 +29,10 @@
|
||||||
#ifndef __ver_check_h_
|
#ifndef __ver_check_h_
|
||||||
#define __ver_check_h_
|
#define __ver_check_h_
|
||||||
|
|
||||||
/** \addtogroup utils */
|
/** \defgroup utils Utils
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \addtogroup misc
|
/** \defgroup misc Miscellaneous functions
|
||||||
|
\ingroup utils
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
|
||||||
|
@ -45,7 +45,6 @@
|
||||||
*/
|
*/
|
||||||
int ver_compare (const char *, const char *);
|
int ver_compare (const char *, const char *);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __ver_check_h_
|
#endif // __ver_check_h_
|
||||||
|
|
|
@ -30,9 +30,6 @@
|
||||||
#ifndef _WAD_H
|
#ifndef _WAD_H
|
||||||
#define _WAD_H
|
#define _WAD_H
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \addtogroup wad
|
/** \addtogroup wad
|
||||||
Wad Files
|
Wad Files
|
||||||
*/
|
*/
|
||||||
|
@ -50,7 +47,6 @@ void *W_GetLumpName (const char *name);
|
||||||
|
|
||||||
void SwapPic (qpic_t *pic);
|
void SwapPic (qpic_t *pic);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // _WAD_H
|
#endif // _WAD_H
|
||||||
|
|
|
@ -26,10 +26,8 @@
|
||||||
$Id$
|
$Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup wad Wad Files
|
/** \defgroup wad Wad Files
|
||||||
|
\ingroup utils
|
||||||
Wadfile processing
|
Wadfile processing
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
|
@ -105,7 +103,6 @@ int wad_add_data (wad_t *wad, const char *lumpname, byte type,
|
||||||
const void *data, int bytes);
|
const void *data, int bytes);
|
||||||
lumpinfo_t *wad_find_lump (wad_t *wad, const char *filename);
|
lumpinfo_t *wad_find_lump (wad_t *wad, const char *filename);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif//__QF_wadfile_h
|
#endif//__QF_wadfile_h
|
||||||
|
|
|
@ -28,10 +28,8 @@
|
||||||
#ifndef __zone_h
|
#ifndef __zone_h
|
||||||
#define __zone_h
|
#define __zone_h
|
||||||
|
|
||||||
/** \addtogroup utils */
|
|
||||||
//@{
|
|
||||||
|
|
||||||
/** \defgroup zone Memory Management
|
/** \defgroup zone Memory Management
|
||||||
|
\ingroup utils
|
||||||
|
|
||||||
H_??? The hunk manages the entire memory block given to quake. It must be
|
H_??? The hunk manages the entire memory block given to quake. It must be
|
||||||
contiguous. Memory can be allocated from either the low or high end in a
|
contiguous. Memory can be allocated from either the low or high end in a
|
||||||
|
@ -174,7 +172,6 @@ void *QA_realloc (void *ptr, size_t size);
|
||||||
void QA_free (void *ptr);
|
void QA_free (void *ptr);
|
||||||
char *QA_strdup (const char *s);
|
char *QA_strdup (const char *s);
|
||||||
|
|
||||||
//@}
|
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
#endif // __zone_h
|
#endif // __zone_h
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue