Go to the documentation of this file.
31 #define TOKEN_DEFAULTS 0x0000
32 #define TOKEN_GET_SINGLETON 0x0001
33 #define TOKEN_GET_NEW 0x0002
34 #define TOKEN_UNIT_TEST_MODE 0x0004
35 #define TOKEN_NO_ERR_CLEAR 0x0008
56 #define token_table_for_each(table_name, struct_name) \
58 const struct token_obj *struct_name = token_table_get_next(table_name, 0);\
60 struct_name = token_table_get_next(table_name, struct_name)\
63 #define token_table_for_each_id(table_name, struct_name, id) \
65 const struct token_obj *struct_name = token_table_get_next_id(table_name, 0, id);\
67 struct_name = token_table_get_next_id(table_name, struct_name, id)\
151 #if defined(_MSC_VER)