diff options
author | Anton Lundin <glance@acc.umu.se> | 2013-11-21 23:48:42 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-11-21 15:54:28 -0800 |
commit | 26656310aba5f5de5c873603f8e74d56283d12a9 (patch) | |
tree | eff92577e6a5a04978c37ca4176c824af21ad3b6 /dive.h | |
parent | 5eccd73a306298616da122ba4e653d4c8f391df8 (diff) | |
download | subsurface-26656310aba5f5de5c873603f8e74d56283d12a9.tar.gz |
Add optional support for stopdepth import from csv
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -626,7 +626,7 @@ extern void set_filename(const char *filename, bool force); extern int parse_dm4_buffer(const char *url, const char *buf, int size, struct dive_table *table, char **error); extern void parse_file(const char *filename, char **error); -extern void parse_csv_file(const char *filename, int time, int depth, int temp, int po2f, int cnsf, char **error); +extern void parse_csv_file(const char *filename, int time, int depth, int temp, int po2f, int cnsf, int stopdepthf, char **error); extern void save_dives(const char *filename); extern void save_dives_logic(const char *filename, bool select_only); |