blob: 87b10d9baae2ed37bf41f33db4e6bdf189d9c633 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef __DIALOG_HH__
#define __DIALOG_HH__
#include "bw.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
void a_Dialog_msg(const char *msg);
int a_Dialog_choice3(const char *msg,
const char *b0, const char *b1, const char *b2);
const char *a_Dialog_input(const char *msg);
const char *a_Dialog_save_file(const char *msg,
const char *pattern, const char *fname);
char *a_Dialog_open_file(const char *msg,
const char *pattern, const char *fname);
void a_Dialog_text_window(const char *txt, const char *title);
void a_Dialog_findtext(BrowserWindow *bw);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif // __DIALOG_HH__
|