source: MondoRescue/branches/2.2.6/mondo/src/common/newt-specific.h@ 1933

Last change on this file since 1933 was 128, checked in by bcornec, 18 years ago

indent on all the C code

  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1/* newt-specific.h
2 * $Id: newt-specific.h 128 2005-11-19 01:27:41Z bcornec $
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);
23bool popup_and_get_string(char *title, char *b, char *output, int maxsize);
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.