mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05:00
21 lines
522 B
C
21 lines
522 B
C
|
#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
|