]> git.tdb.fi Git - ext/subsurface.git/blob - libdivecomputer.h
Update to new sane libdivecomputer interfaces
[ext/subsurface.git] / libdivecomputer.h
1 #ifndef LIBDIVECOMPUTER_H
2 #define LIBDIVECOMPUTER_H
3
4 /* libdivecomputer */
5 #include <device.h>
6 #include <suunto.h>
7 #include <reefnet.h>
8 #include <uwatec.h>
9 #include <oceanic.h>
10 #include <mares.h>
11 #include <hw.h>
12 #include <cressi.h>
13 #include <zeagle.h>
14 #include <atomics.h>
15 #include <utils.h>
16
17 /* handling uemis Zurich SDA files */
18 #include "uemis.h"
19
20 /* don't forget to include the UI toolkit specific display-XXX.h first
21    to get the definition of progressbar_t */
22 typedef struct device_data_t {
23         dc_descriptor_t *descriptor;
24         const char *vendor, *product, *devname;
25         dc_device_t *device;
26         progressbar_t progress;
27         int preexisting;
28 } device_data_t;
29
30 extern GError *do_import(device_data_t *data);
31
32 #endif