X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=config%2Fexpr.h;h=df198a5f482217781e7d4a605962bf443881ce7b;hb=4c9a4d5505c463aa2a35b6a199910fd92e387566;hp=d4ecce8bc3a689daa2157e4f47e65e7c62192bd4;hpb=bb8077d7e3a3b8cab3fb3c3065c99fce9aeed2bc;p=carl9170fw.git diff --git a/config/expr.h b/config/expr.h index d4ecce8..df198a5 100644 --- a/config/expr.h +++ b/config/expr.h @@ -12,6 +12,7 @@ extern "C" { #include #include +#include "list.h" #ifndef __cplusplus #include #endif @@ -105,6 +106,9 @@ struct symbol { #define SYMBOL_DEF3 0x40000 /* symbol.def[S_DEF_3] is valid */ #define SYMBOL_DEF4 0x80000 /* symbol.def[S_DEF_4] is valid */ +/* choice values need to be set before calculating this symbol value */ +#define SYMBOL_NEED_SET_CHOICE_VALUES 0x100000 + #define SYMBOL_MAXLENGTH 256 #define SYMBOL_HASHSIZE 9973 @@ -173,6 +177,15 @@ struct menu { #define MENU_CHANGED 0x0001 #define MENU_ROOT 0x0002 +struct jump_key { + struct list_head entries; + size_t offset; + struct menu *target; + int index; +}; + +#define JUMP_NB 9 + extern struct file *file_list; extern struct file *current_file; struct file *lookup_file(const char *name);