]> git.tdb.fi Git - ext/subsurface.git/blobdiff - dive.h
Add .gitignore file for current state
[ext/subsurface.git] / dive.h
diff --git a/dive.h b/dive.h
index 9fc3908678464fd147c6e0ecc25c9db1e1045a97..53ecdfe00efc9d5ac41305bf488dd441551f7804 100644 (file)
--- a/dive.h
+++ b/dive.h
@@ -111,4 +111,16 @@ struct dive {
        struct sample sample[];
 };
 
+extern int verbose;
+
+struct dive_table {
+       int nr, allocated;
+       struct dive **dives;
+};
+
+extern struct dive_table dive_table;
+
+void parse_xml_init(void);
+void parse_xml_file(const char *filename);
+
 #endif /* DIVE_H */