aboutsummaryrefslogtreecommitdiffstats
path: root/libdivecomputer.h
blob: 7497abf11503cd63cf95adaa4b29bf7d1ad65480 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef LIBDIVECOMPUTER_H
#define LIBDIVECOMPUTER_H

/* libdivecomputer */
#include <libdivecomputer/device.h>
#include <libdivecomputer/parser.h>

/* handling uemis Zurich SDA files */
#include "uemis.h"

/* don't forget to include the UI toolkit specific display-XXX.h first
   to get the definition of progressbar_t */
typedef struct device_data_t {
	dc_descriptor_t *descriptor;
	const char *vendor, *product, *devname;
	dc_device_t *device;
	dc_context_t *context;
	progressbar_t progress;
	int preexisting;
	gboolean force_download;
} device_data_t;

extern GError *do_import(device_data_t *data);

#endif