1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-06 23:44:43 -04:00
elinks/src/dialogs/edit.h
Jonas Fonseca acf2ec806b Remove empty lines in start of header files
A left over from the CVS Id removal. Also, for a few files, normalize the
order in which things are declared in headers.
2005-11-15 11:33:27 +01:00

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