0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-10-21 19:54:04 -04:00

Initial commit of the HEAD branch of the ELinks CVS repository, as of

Thu Sep 15 15:57:07 CEST 2005. The previous history can be added to this
by grafting.
This commit is contained in:
Petr Baudis
2005-09-15 15:58:31 +02:00
committed by Petr Baudis
commit 0f6d4310ad
961 changed files with 394417 additions and 0 deletions

24
src/bfu/listmenu.h Normal file
View File

@@ -0,0 +1,24 @@
/* $Id: listmenu.h,v 1.4 2004/11/22 13:27:41 zas Exp $ */
#ifndef EL__BFU_LISTMENU_H
#define EL__BFU_LISTMENU_H
struct session;
struct string;
struct terminal;
struct list_menu {
struct menu_item **stack;
int stack_size;
};
void init_menu(struct list_menu *menu);
void destroy_menu(struct list_menu *menu);
void add_select_item(struct list_menu *menu, struct string *string, struct string *orig_string, unsigned char **value, int order, int dont_add);
void new_menu_item(struct list_menu *menu, unsigned char *name, int data, int fullname);
struct menu_item *detach_menu(struct list_menu *menu);
void menu_labels(struct menu_item *m, unsigned char *base, unsigned char **lbls);
void do_select_submenu(struct terminal *term, void *menu_, void *ses_);
void free_menu(struct menu_item *m);
#endif /* EL__BFU_LISTMENU_H */