mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
ccb1c33d02
* ensure include guard to every header * comment endif guard block Signed-off-by: Boris Barbulovski <bbarbulovski@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
10 lines
200 B
C
10 lines
200 B
C
#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 // QT_GUI_H
|