From 9f126ed805bfa4abd88a0179dacbda3d4bbaa2df Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 1 Mar 2011 15:18:12 +0900 Subject: [PATCH] Add some quick type access macros. --- tools/qfcc/include/obj_file.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/qfcc/include/obj_file.h b/tools/qfcc/include/obj_file.h index 729d0e174..6cb34f8d5 100644 --- a/tools/qfcc/include/obj_file.h +++ b/tools/qfcc/include/obj_file.h @@ -368,10 +368,14 @@ enum { \param t offset to type encoding \return (char *) + \note Assumes standard space order. \hideinitializer */ #define QFO_TYPESTR(q, t) QFO_GSTRING (q, qfo_type_space, (t) + 2) +#define QFO_TYPEMETA(q, t) QFO_INT (q, qfo_type_space, (t) + 0) +#define QFO_TYPETYPE(q, t) QFO_INT (q, qfo_type_space, (t) + 3) + /** Access a string global, converting it to a C string. \param q pointer to ::qfo_t struct