diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-10-25 13:57:18 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-10-25 13:59:52 -0700 |
commit | 2b86fe84f9b2ac1edae47ff1dd8e5d34373ddff5 (patch) | |
tree | 5b7240a872c7169d1d97a58386d96589bb9d3f71 /core/subsurfacestartup.h | |
parent | 17d21dbf40782b6eea58d6a6dffa38a5674cc0e0 (diff) | |
download | subsurface-2b86fe84f9b2ac1edae47ff1dd8e5d34373ddff5.tar.gz |
cleanup: move application flags to core/subsurfacehelper.h
These flags are not dive-related, therefore move their declaration
to the appropriate header file. Likewise, move their definition
from parse-xml.c to subsurfacehelper.c
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/subsurfacestartup.h')
-rw-r--r-- | core/subsurfacestartup.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/subsurfacestartup.h b/core/subsurfacestartup.h index 5784178a7..d62a4b92e 100644 --- a/core/subsurfacestartup.h +++ b/core/subsurfacestartup.h @@ -9,6 +9,10 @@ extern "C" { #endif extern bool imported; +extern int quit, force_root, ignore_bt; +#ifdef SUBSURFACE_MOBILE_DESKTOP +extern char *testqml; +#endif void setup_system_prefs(void); void parse_argument(const char *arg); |