subsurface/subsurfacestartup.h
Dirk Hohndel f96299ea94 Dependencies are too aggressive for version.h
Apparently qmake can't tell that #include "version.h" and #include
"libdivecomputer/version.h" are not the same thing. Instead of spending
another bunch of hours on fixing the buildsystem I decided to just cleanup
the spots where we actually use the version file and rename it to
ssrf-version.h.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2013-10-15 19:54:15 -07:00

24 lines
391 B
C

#ifndef SUBSURFACESTARTUP_H
#define SUBSURFACESTARTUP_H
#include "dive.h"
#include "divelist.h"
#include "libdivecomputer.h"
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
extern struct preferences prefs;
extern struct preferences default_prefs;
extern bool imported;
void setup_system_prefs(void);
void parse_argument(const char *arg);
#ifdef __cplusplus
}
#endif
#endif