source: MondoRescue/branches/2.2.10/mondo/src/common/newt-specific.h@ 2316

Last change on this file since 2316 was 2316, checked in by Bruno Cornec, 15 years ago

r3327@localhost: bruno | 2009-08-04 00:17:46 +0200
popup_and_get_string and build_partition_name now return an allocated string

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