mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
518ec33ba3
This is missing a ton of the information in the .SDA files It only parses the divelog.SDA file, not the dive.SDA file It ignores the information on the gas(es) used and all the data on the tanks. It still draws some strange artefacts at the end of the dive But it correctly hooks into the import dialogue, it gives you a file select box (somewhere, I'm sure, a gtk developer cries quietly) and then parses enough of this file to serve as a proof of concept. Signed-off-by: Dirk Hohndel <dirk@hohndel.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
15 lines
338 B
C
15 lines
338 B
C
#ifndef UEMIS_H
|
|
#define UEMIS_H
|
|
|
|
/*
|
|
* defines and prototypes for the uemis Zurich SDA file parser
|
|
* we add this to the list of dive computers that is supported
|
|
* in libdivecomputer by using a negative value for the type enum
|
|
*/
|
|
#define DEVICE_TYPE_UEMIS (-1)
|
|
|
|
void uemis_import();
|
|
|
|
extern GtkWidget *main_window;
|
|
|
|
#endif /* DIVE_H */
|