diff options
Diffstat (limited to 'src/LYStructs.h')
-rw-r--r-- | src/LYStructs.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/LYStructs.h b/src/LYStructs.h index b4c1422b..b37e5198 100644 --- a/src/LYStructs.h +++ b/src/LYStructs.h @@ -1,5 +1,5 @@ /* - * $LynxId: LYStructs.h,v 1.29 2009/02/02 19:56:38 tom Exp $ + * $LynxId: LYStructs.h,v 1.30 2010/12/08 23:30:08 tom Exp $ */ #ifndef LYSTRUCTS_H #define LYSTRUCTS_H @@ -95,20 +95,21 @@ extern "C" { typedef struct _lynx_list_item_type { struct _lynx_list_item_type *next; /* the next item in the linked list */ char *name; /* a description of the item */ + char *menu_name; /* menu-name for EXTERNAL / EXTERNAL_MENU */ char *command; /* the command to execute */ - int always_enabled; /* a constant to tell whether or + BOOL always_enabled; /* a constant to tell whether or * not to disable the printer * when the no_print option is on */ /* HTML lists: */ - BOOL override_primary_action; /* whether primary action will be - * overridden by this - e.g. this - * allows invoking user's MUA when - * mailto: link is activated using - * normal "activate" command. This - * field is only examined by code that - * handles EXTERNAL command. - */ + BOOL override_action; /* whether primary action will be + * overridden by this - e.g. this + * allows invoking user's MUA when + * mailto: link is activated using + * normal "activate" command. This + * field is only examined by code that + * handles EXTERNAL command. + */ /* PRINTER lists: */ int pagelen; /* an integer to store the printer's * page length |