blob: d694007d031e2eb919136c2ce46d8dc9e9165be1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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();
#endif /* DIVE_H */
|