X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=dive.h;h=65337303a05d893e7e894ac764ff46a444c0ab61;hb=89593a542aaf0554cceda7f92ad51e9df7e4cbde;hp=2d03ee7cd7d0db4c364ed51a9a1fd1cee37e2c94;hpb=550eb862fa6dbc1d07c6a3165634900421dd2ca6;p=ext%2Fsubsurface.git diff --git a/dive.h b/dive.h index 2d03ee7..6533730 100644 --- a/dive.h +++ b/dive.h @@ -81,6 +81,7 @@ typedef struct { typedef struct { cylinder_type_t type; gasmix_t gasmix; + pressure_t start, end; } cylinder_t; static inline int to_feet(depth_t depth) @@ -108,10 +109,9 @@ struct sample { int cylinderindex; }; -#define MAX_CYLINDERS (4) +#define MAX_CYLINDERS (8) struct dive { - const char *name; time_t when; char *location; char *notes; @@ -119,7 +119,6 @@ struct dive { duration_t duration, surfacetime; depth_t visibility; temperature_t airtemp, watertemp; - pressure_t beginning_pressure, end_pressure; cylinder_t cylinder[MAX_CYLINDERS]; int samples; struct sample sample[];