diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2013-08-30 15:06:26 -0300 |
---|---|---|
committer | Tomaz Canabrava <tcanabrava@kde.org> | 2013-08-30 15:06:26 -0300 |
commit | 5e722a93e46ec1217bffd2bbcb1279cfd96dc2ed (patch) | |
tree | 13e21ee755155104cf5755ece2f3406fbfbb6f9a /planner.h | |
parent | 2d0e877bb281733c94ac7f6d614914d7820c3af1 (diff) | |
download | subsurface-5e722a93e46ec1217bffd2bbcb1279cfd96dc2ed.tar.gz |
Gas choices working, both directions ( Planner and Table )
The gas choice now works and correctly ( I hope ) calculates
the gas choosen to show on the planner. User can choose the
gas from the list on the visual planner, and also on the table.
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Diffstat (limited to 'planner.h')
-rw-r--r-- | planner.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,6 +1,11 @@ #ifndef PLANNER_H #define PLANNER_H + +#ifdef __cplusplus +extern "C" { +#endif + extern void plan(struct diveplan *diveplan, char **cache_datap, struct dive **divep, char **error_string_p); extern int validate_gas(const char *text, int *o2_p, int *he_p); extern int validate_time(const char *text, int *sec_p, int *rel_p); @@ -19,4 +24,8 @@ extern char *cache_data; extern char *disclaimer; extern double plangflow, plangfhigh; + +#ifdef __cplusplus +} +#endif #endif /* PLANNER_H */ |