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

Last change on this file was 1103, checked in by Bruno Cornec, 17 years ago

Fix again another set of compiler warnings (Michel Loiseleur <mloiseleur_at_linagora.com>)

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