subsurface/uemis.h
Dirk Hohndel 682135838f Separate out the UI from the program logic
The following are UI toolkit specific:
gtk-gui.c   - overall layout, main window of the UI
divelist.c  - list of dives subsurface maintains
equipment.c - equipment / tank information for each dive
info.c      - detailed dive info
print.c     - printing

The rest is independent of the UI:
main.c i    - program frame
dive.c i    - creates and maintaines the internal dive list structure
libdivecomputer.c
uemis.c
parse-xml.c
save-xml.c  - interface with dive computers and the XML files
profile.c   - creates the data for the profile and draws it using cairo

This commit should contain NO functional changes, just moving code around
and a couple of minor abstractions.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-09-20 12:48:56 -07:00

13 lines
306 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();
#endif /* DIVE_H */