#ifndef EL__DIALOGS_EDIT_H #define EL__DIALOGS_EDIT_H #include "bfu/dialog.h" #include "session/session.h" #include "terminal/terminal.h" enum edit_dialog_type { EDIT_DLG_SEARCH, /* search dialog */ EDIT_DLG_ADD /* edit/add dialog */ }; void do_edit_dialog(struct terminal *, int, unsigned char *, const unsigned char *, const unsigned char *, struct session *, struct dialog_data *, done_handler_T *when_done, void when_cancel(struct dialog *), void *, enum edit_dialog_type); #endif