2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__DIALOGS_OPTIONS_H
|
|
|
|
#define EL__DIALOGS_OPTIONS_H
|
|
|
|
|
|
|
|
#include "session/session.h"
|
|
|
|
#include "terminal/terminal.h"
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04: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 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|