mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-03 03:56:32 -04:00
acf2ec806b
A left over from the CVS Id removal. Also, for a few files, normalize the order in which things are declared in headers.
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
|