From ecbb904d6b1ad6ec5d5c67b4e79528d4a094857e Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 22 Feb 2011 09:23:04 +0900 Subject: [PATCH] More docs and clearer types. --- tools/qfcc/include/obj_type.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tools/qfcc/include/obj_type.h b/tools/qfcc/include/obj_type.h index 46ebf14a2..f779c0c07 100644 --- a/tools/qfcc/include/obj_type.h +++ b/tools/qfcc/include/obj_type.h @@ -48,10 +48,11 @@ typedef struct qfot_ptrfld_s { } qfot_ptrfld_t; typedef struct qfot_func_s { - pointer_t return_type; ///< return type of function - pr_int_t num_params; ///< ones compliment count of paramenters - ///< -ve values indicate number of real - ///< params + pointer_t return_type; ///< return type of the function + pr_int_t num_params; ///< ones compliment count of the + ///< parameters. -ve values indicate the + ///< number of real parameters before the + ///< ellipsis pointer_t param_types[1]; ///< variable length list of parameter ///< types } qfot_func_t;