summaryrefslogtreecommitdiffstats
path: root/dive.h
diff options
context:
space:
mode:
Diffstat (limited to 'dive.h')
-rw-r--r--dive.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/dive.h b/dive.h
index 734aa2269..c276fe6de 100644
--- a/dive.h
+++ b/dive.h
@@ -697,6 +697,19 @@ void get_gas_string(int o2, int he, char *buf, int len);
struct event *get_next_event(struct event *event, char *name);
+
+/* this struct holds the information that
+ * describes the cylinders of air.
+ * it is a global variable initialized in equipment.c
+ * used to fill the combobox in the add/edit cylinder
+ * dialog
+ */
+
+struct tank_info {
+ const char *name;
+ int cuft, ml, psi, bar;
+};
+
#ifdef DEBUGFILE
extern char *debugfilename;
extern FILE *debugfile;