mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
Revert "Clean up signedness confusion in gaspressures.h"
This reverts commit 7d1c2a142f
.
Another one.
This commit is contained in:
parent
a678cba93a
commit
d9c3fc9946
1 changed files with 9 additions and 9 deletions
|
@ -11,20 +11,20 @@ extern "C" {
|
|||
* pressure reading from the tank */
|
||||
typedef struct pr_track_struct pr_track_t;
|
||||
struct pr_track_struct {
|
||||
unsigned int start;
|
||||
unsigned int end;
|
||||
unsigned int t_start;
|
||||
unsigned int t_end;
|
||||
unsigned int pressure_time;
|
||||
int start;
|
||||
int end;
|
||||
int t_start;
|
||||
int t_end;
|
||||
int pressure_time;
|
||||
pr_track_t *next;
|
||||
};
|
||||
|
||||
typedef struct pr_interpolate_struct pr_interpolate_t;
|
||||
struct pr_interpolate_struct {
|
||||
unsigned int start;
|
||||
unsigned int end;
|
||||
unsigned int pressure_time;
|
||||
unsigned int acc_pressure_time;
|
||||
int start;
|
||||
int end;
|
||||
int pressure_time;
|
||||
int acc_pressure_time;
|
||||
};
|
||||
|
||||
enum interpolation_strategy {SAC, TIME, CONSTANT};
|
||||
|
|
Loading…
Reference in a new issue