mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-08 17:00:47 +00:00
More docs and clearer types.
This commit is contained in:
parent
b7c6c4af5d
commit
ecbb904d6b
1 changed files with 5 additions and 4 deletions
|
@ -48,10 +48,11 @@ typedef struct qfot_ptrfld_s {
|
||||||
} qfot_ptrfld_t;
|
} qfot_ptrfld_t;
|
||||||
|
|
||||||
typedef struct qfot_func_s {
|
typedef struct qfot_func_s {
|
||||||
pointer_t return_type; ///< return type of function
|
pointer_t return_type; ///< return type of the function
|
||||||
pr_int_t num_params; ///< ones compliment count of paramenters
|
pr_int_t num_params; ///< ones compliment count of the
|
||||||
///< -ve values indicate number of real
|
///< parameters. -ve values indicate the
|
||||||
///< params
|
///< number of real parameters before the
|
||||||
|
///< ellipsis
|
||||||
pointer_t param_types[1]; ///< variable length list of parameter
|
pointer_t param_types[1]; ///< variable length list of parameter
|
||||||
///< types
|
///< types
|
||||||
} qfot_func_t;
|
} qfot_func_t;
|
||||||
|
|
Loading…
Reference in a new issue