mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
23 lines
317 B
C
23 lines
317 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 bool imported;
|
||
|
|
||
|
void setup_system_prefs(void);
|
||
|
void parse_argument(const char *arg);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|