2005-09-15 15:58:31 +02:00
|
|
|
#ifndef EL__DIALOGS_OPTIONS_H
|
|
|
|
|
#define EL__DIALOGS_OPTIONS_H
|
|
|
|
|
|
|
|
|
|
#include "session/session.h"
|
|
|
|
|
#include "terminal/terminal.h"
|
|
|
|
|
|
2020-10-05 20:14:55 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-09-15 15:58:31 +02:00
|
|
|
void charset_list(struct terminal *, void *, void *);
|
|
|
|
|
void terminal_options(struct terminal *, void *, struct session *);
|
|
|
|
|
void menu_language_list(struct terminal *, void *, void *);
|
|
|
|
|
void resize_terminal_dialog(struct terminal *term);
|
|
|
|
|
|
2020-10-05 20:14:55 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-09-15 15:58:31 +02:00
|
|
|
#endif
|