blob: 43a006a4cc84dcdf3ddd5820c969c4b11a782121 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef QT_GUI_H
#define QT_GUI_H
void init_ui(int *argcp, char ***argvp);
void init_qt_ui(int *argcp, char ***argvp, char *errormessage);
void run_ui(void);
void exit_ui(void);
#endif
|