2017-04-27 20:18:03 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-09-09 05:59:03 -03:00
|
|
|
#ifndef SUBSURFACESTARTUP_H
|
|
|
|
#define SUBSURFACESTARTUP_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
2014-01-16 11:17:06 +01:00
|
|
|
#else
|
|
|
|
#include <stdbool.h>
|
2013-09-09 05:59:03 -03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
extern bool imported;
|
2020-10-25 13:57:18 +01:00
|
|
|
extern int quit, force_root, ignore_bt;
|
|
|
|
#ifdef SUBSURFACE_MOBILE_DESKTOP
|
|
|
|
extern char *testqml;
|
|
|
|
#endif
|
2013-09-09 05:59:03 -03:00
|
|
|
|
|
|
|
void setup_system_prefs(void);
|
|
|
|
void parse_argument(const char *arg);
|
2014-12-18 08:47:42 +01:00
|
|
|
void free_prefs(void);
|
2015-09-23 11:13:07 +02:00
|
|
|
void print_files(void);
|
2017-11-15 23:55:42 +02:00
|
|
|
void print_version(void);
|
2013-09-09 05:59:03 -03:00
|
|
|
|
2016-04-29 06:17:02 -07:00
|
|
|
extern char *settings_suffix;
|
|
|
|
|
2013-09-09 05:59:03 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 19:14:46 +01:00
|
|
|
#endif // SUBSURFACESTARTUP_H
|