diff options
author | 2016-01-10 12:12:39 +0200 | |
---|---|---|
committer | 2016-02-26 09:15:43 +0100 | |
commit | cd44aabb5f4f02ac290bd43579a029f09e915ad5 (patch) | |
tree | dfe5b2b06a113d9652649508ad668dcd1a7dc21b /save-html.h | |
parent | 5229c507cbf8192c736de71262bf214f3a0b8560 (diff) | |
download | subsurface-cd44aabb5f4f02ac290bd43579a029f09e915ad5.tar.gz |
Support for imperial depth on worldmap export
This will use the depth units from user preferences when exporting the
worldmap.
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'save-html.h')
-rw-r--r-- | save-html.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/save-html.h b/save-html.h index 20743e90a..13bb102b1 100644 --- a/save-html.h +++ b/save-html.h @@ -9,6 +9,7 @@ extern "C" { #include "membuffer.h" void put_HTML_date(struct membuffer *b, struct dive *dive, const char *pre, const char *post); +void put_HTML_depth(struct membuffer *b, struct dive *dive, const char *pre, const char *post); void put_HTML_airtemp(struct membuffer *b, struct dive *dive, const char *pre, const char *post); void put_HTML_watertemp(struct membuffer *b, struct dive *dive, const char *pre, const char *post); void put_HTML_time(struct membuffer *b, struct dive *dive, const char *pre, const char *post); |