some documentation work

This commit is contained in:
Bill Currie 2005-07-27 12:14:35 +00:00
parent d25a5de0df
commit e3c9cfd3d2
24 changed files with 42 additions and 3852 deletions

View file

@ -764,12 +764,12 @@ typedef void (*builtin_proc) (progs_t *pr);
*/
typedef struct {
/// QC name of the builtin. Must be an exact match for automaticly resolved
/// builtins (func = #0 in QC). NULL indicates end of array for
/// builtins (func = \#0 in QC). NULL indicates end of array for
/// PR_RegisterBuiltins()
const char *name;
/// Pointer to the C implementation of the builtin function.
builtin_proc proc;
/// The number of the builtin for #N in QC. -1 for automatic allocation.
/// The number of the builtin for \#N in QC. -1 for automatic allocation.
/// 0 or >= ::PR_AUTOBUILTIN is invalid.
int binum;
} builtin_t;