mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
[gamecode] Add some more comments to dfunction_t
This commit is contained in:
parent
2dc806cff5
commit
6990bd5752
1 changed files with 3 additions and 3 deletions
|
@ -457,15 +457,15 @@ typedef struct dparmsize_s {
|
|||
|
||||
typedef struct dfunction_s {
|
||||
pr_int_t first_statement; // negative numbers are builtins
|
||||
pr_uint_t parm_start;
|
||||
pr_uint_t parm_start; // beginning of locals data space
|
||||
pr_uint_t locals; // total ints of parms + locals
|
||||
|
||||
pr_uint_t profile; // runtime
|
||||
|
||||
string_t s_name;
|
||||
string_t s_name; // source function name
|
||||
string_t s_file; // source file defined in
|
||||
|
||||
pr_int_t numparms;
|
||||
pr_int_t numparms; // -ve is varargs (1s comp of real count)
|
||||
dparmsize_t parm_size[MAX_PARMS];
|
||||
} dfunction_t;
|
||||
|
||||
|
|
Loading…
Reference in a new issue