2017-04-27 18:18:03 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-09-09 08:59:03 +00:00
|
|
|
#ifndef SUBSURFACESTARTUP_H
|
|
|
|
#define SUBSURFACESTARTUP_H
|
|
|
|
|
2024-06-13 20:59:32 +00:00
|
|
|
#include <string>
|
|
|
|
|
2013-09-09 08:59:03 +00:00
|
|
|
extern bool imported;
|
2020-10-25 12:57:18 +00:00
|
|
|
extern int quit, force_root, ignore_bt;
|
2013-09-09 08:59:03 +00:00
|
|
|
|
2024-05-04 16:53:41 +00:00
|
|
|
void setup_system_prefs();
|
2013-09-09 08:59:03 +00:00
|
|
|
void parse_argument(const char *arg);
|
2024-05-04 16:53:41 +00:00
|
|
|
void print_files();
|
|
|
|
void print_version();
|
2013-09-09 08:59:03 +00:00
|
|
|
|
2024-06-30 19:17:17 +00:00
|
|
|
void subsurface_console_init();
|
|
|
|
void subsurface_console_exit();
|
|
|
|
bool subsurface_user_is_root();
|
|
|
|
|
2024-06-13 20:59:32 +00:00
|
|
|
extern std::string settings_suffix;
|
2016-04-29 13:17:02 +00:00
|
|
|
|
2024-02-28 19:07:39 +00:00
|
|
|
#ifdef SUBSURFACE_MOBILE_DESKTOP
|
|
|
|
extern std::string testqml;
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 18:14:46 +00:00
|
|
|
#endif // SUBSURFACESTARTUP_H
|