diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2018-12-29 21:32:55 +0200 |
---|---|---|
committer | Miika Turkia <miika.turkia@gmail.com> | 2018-12-29 21:32:55 +0200 |
commit | 2bc7aa5fc72203b25eb77948da44cf7f7b65bc17 (patch) | |
tree | 3b158eee67a1475839d3a4786849793fde5e5fc4 /core/dive.h | |
parent | a0d7b76dd040b28d3a455d491c904ef53b8368f9 (diff) | |
download | subsurface-2bc7aa5fc72203b25eb77948da44cf7f7b65bc17.tar.gz |
Initial support for Shearwater Cloud
This works to some extent to part of a sample log I received. However,
still quite a bit more work is needed.
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Diffstat (limited to 'core/dive.h')
-rw-r--r-- | core/dive.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/dive.h b/core/dive.h index 6bc0f6fae..0f6d72a81 100644 --- a/core/dive.h +++ b/core/dive.h @@ -479,6 +479,7 @@ extern void set_filename(const char *filename); extern int parse_dm4_buffer(sqlite3 *handle, const char *url, const char *buf, int size, struct dive_table *table); extern int parse_dm5_buffer(sqlite3 *handle, const char *url, const char *buf, int size, struct dive_table *table); extern int parse_shearwater_buffer(sqlite3 *handle, const char *url, const char *buf, int size, struct dive_table *table); +extern int parse_shearwater_cloud_buffer(sqlite3 *handle, const char *url, const char *buf, int size, struct dive_table *table); extern int parse_cobalt_buffer(sqlite3 *handle, const char *url, const char *buf, int size, struct dive_table *table); extern int parse_divinglog_buffer(sqlite3 *handle, const char *url, const char *buf, int size, struct dive_table *table); extern int parse_dlf_buffer(unsigned char *buffer, size_t size, struct dive_table *table); |