00001 #ifndef _RTSCNDTRGDICTENTRY_H_ 00002 #define _RTSCNDTRGDICTENTRY_H_ 00003 00004 #include "rtsDbConstants.h" 00005 00006 struct rtsCndTrgDictEntry 00007 { 00009 // 10/04 index by hash rather than run 00010 //int idx_rn; 00011 unsigned int hash; 00013 00014 /* char field[DB_MAX_STR_LEN]; removed as of version 10.0 */ 00015 /* int objectIdx; removed as of version 10.0 */ 00016 /* int registerIdx; removed as of version 10.0 */ 00017 int object; /* added as of version 10.0 */ 00018 int idx; /* added as of version 10.0 */ 00019 int reg; /* added as of version 10.0 */ 00020 char label[DB_MAX_STR_LEN]; 00021 int value; /* -1 for non-register values... */ 00022 00023 // 3/3/09 00024 int defaultvalue; 00025 }; 00026 00027 #endif
1.5.9