summaryrefslogtreecommitdiff
path: root/linux/dialogs.h
blob: 7151fcce8a218747e870949bef0213f23444a894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _DIALOGS_H_
#define _DIALOGS_H_

int msgbox_execute(char* text, int mode);
int filedlg_execute(char* caption, char* filename);
int arraydlg_execute(void* param);
int aboutdlg_execute(void* param);
int htmldlg_execute(void* param);
int imageoptsdlg_execute(void* param, bool from_htmldlg);
int povraydlg_execute(void* param);
int preferencesdlg_execute(void* param);
int propertiesdlg_execute(void* param);

#endif // _DIALOGS_H_