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
|
|
|
|
|
2024-06-13 22:59:32 +02:00
|
|
|
#include <string>
|
|
|
|
|
2013-09-09 05:59:03 -03:00
|
|
|
extern bool imported;
|
2020-10-25 13:57:18 +01:00
|
|
|
extern int quit, force_root, ignore_bt;
|
2013-09-09 05:59:03 -03:00
|
|
|
|
2024-05-04 18:53:41 +02:00
|
|
|
void setup_system_prefs();
|
2013-09-09 05:59:03 -03:00
|
|
|
void parse_argument(const char *arg);
|
2024-05-04 18:53:41 +02:00
|
|
|
void print_files();
|
|
|
|
void print_version();
|
2013-09-09 05:59:03 -03:00
|
|
|
|
2024-06-30 21:17:17 +02:00
|
|
|
void subsurface_console_init();
|
|
|
|
void subsurface_console_exit();
|
|
|
|
bool subsurface_user_is_root();
|
|
|
|
|
2024-06-13 22:59:32 +02:00
|
|
|
extern std::string settings_suffix;
|
2016-04-29 06:17:02 -07:00
|
|
|
|
2024-02-28 20:07:39 +01:00
|
|
|
#ifdef SUBSURFACE_MOBILE_DESKTOP
|
|
|
|
extern std::string testqml;
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 19:14:46 +01:00
|
|
|
#endif // SUBSURFACESTARTUP_H
|