From: Peep P. <so...@us...> - 2004-06-14 20:58:02
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22971 Modified Files: lpc.h Log Message: Added T_CHAR_PTR, for use by F_INDEX_LVALUE. Index: lpc.h =================================================================== RCS file: /cvsroot/agd/server/src/lpc.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- lpc.h 8 Jun 2004 20:44:53 -0000 1.10 +++ lpc.h 14 Jun 2004 20:57:52 -0000 1.11 @@ -12,10 +12,16 @@ #define T_VOID 0x03 #define T_OBJECT 0x04 #define T_MIXED 0x05 -#define T_LVALUE 0x10 /* Used by interpret.c. I'd rather not have it here, - but as it also needs an union member, it would be - too cluttered otherwise. */ -#define T_ARRAY 0x80 /* Indicates an array datatype. */ + +/* Used by interpret.c. I'd rather not have it here, + but as it also needs an union member, it would be + too cluttered otherwise. */ +#define T_LVALUE 0x10 + +/* Used by F_INDEX_LVALUE. */ +#define T_CHAR_PTR 0x20 + +#define T_ARRAY 0x80 /* string_types */ #define ST_MALLOC 1 |