diff options
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -587,6 +587,7 @@ struct divedatapoint { int depth; int o2; int he; + int po2; gboolean entered; struct divedatapoint *next; }; @@ -600,7 +601,7 @@ struct diveplan { }; void plan(struct diveplan *diveplan, char **cache_datap, struct dive **divep); -void plan_add_segment(struct diveplan *diveplan, int duration, int depth, int o2, int he); +void plan_add_segment(struct diveplan *diveplan, int duration, int depth, int o2, int he, int po2); void add_duration_to_nth_dp(struct diveplan *diveplan, int idx, int duration, gboolean is_rel); void add_depth_to_nth_dp(struct diveplan *diveplan, int idx, int depth); void add_gas_to_nth_dp(struct diveplan *diveplan, int idx, int o2, int he); |