source: MondoRescue/branches/stable/mondo/src/common/newt-specific-EXT.h@ 1551

Last change on this file since 1551 was 1101, checked in by Bruno Cornec, 17 years ago

Clean up some compiler warnings (Michel Loiseleur <mloiseleur_at_linagora.com>)

  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1/* newt-specific-EXT.h */
2
3
4extern bool ask_me_yes_or_no(char *prompt);
5extern bool ask_me_OK_or_cancel(char *prompt);
6extern void close_evalcall_form(void);
7extern void close_progress_form(void);
8extern void fatal_error(char *error_string);
9extern void finish(int signal);
10extern void mvaddstr_and_log_it(int y, int x, char *output);
11extern void open_evalcall_form(char *title);
12extern void open_progress_form(char *title, char *b1, char *b2, char *b3,
13 long max_val);
14extern void log_file_end_to_screen(char *filename, char *grep_for_me);
15extern void log_to_screen(const char *fmt, ...);
16extern void popup_and_OK(char *prompt);
17extern bool popup_and_get_string(char *title, char *b, char *output,
18 int maxsize);
19extern bool popup_with_buttons(char *p, char *button1, char *button2);
20extern void refresh_log_screen(void);
21extern void setup_newt_stuff(void);
22extern void update_evalcall_form_ratio(int num, int denom);
23extern void update_evalcall_form(int curr);
24extern void update_progress_form(char *blurb3);
25extern void update_progress_form_full(char *blurb1, char *blurb2,
26 char *blurb3);
27
28
29
30
31
32extern t_bkptype which_backup_media_type(bool);
33extern int which_compression_level(void);
34
35
36extern void popup_changelist_from_file(char *source_file);
37
38extern pid_t g_main_pid;
Note: See TracBrowser for help on using the repository browser.