mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
16 lines
338 B
C
16 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 */
|