00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00116 #ifndef FAL_STR
00117 #define FAL_STR( id ) vm->moduleString( id )
00118 #endif
00119
00120
00121 #undef FAL_MODSTR
00122 #ifdef FALCON_DECLARE_MODULE
00123 #define FAL_MODSTR( str_id, text ) \
00124 str_id = FALCON_DECLARE_MODULE->addString( text, true )->id();
00125 #else
00126 #ifdef FALCON_REALIZE_STRTAB
00127 #define FAL_MODSTR( id, text ) unsigned int id;
00128 #else
00129 #define FAL_MODSTR( id, text ) extern unsigned int id;
00130 #endif
00131 #endif
00132
00133