diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-15 13:18:59 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-15 13:18:59 (GMT) |
commit | ba62d1b75275732e8604630d05bce4532ab1675b (patch) | |
tree | c4627dd3a77e4eb7855feee8637e2437378b7478 /include | |
parent | 213338f26f6d250d5acd2c25037f8bd7462be997 (diff) |
Changed signature of tng_util_*_with_time_write to use double.
Minor fixes.
Diffstat (limited to 'include')
-rw-r--r-- | include/tng_io.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/tng_io.h b/include/tng_io.h index 4295b7f..9118b06 100644 --- a/include/tng_io.h +++ b/include/tng_io.h @@ -2553,7 +2553,7 @@ tng_function_status DECLSPECDLLEXPORT tng_util_box_shape_write tng_function_status DECLSPECDLLEXPORT tng_util_pos_with_time_write (tng_trajectory_t tng_data, const int64_t frame_nr, - const int64_t time, + const double time, const float *positions); /** @@ -2578,7 +2578,7 @@ tng_function_status DECLSPECDLLEXPORT tng_util_pos_with_time_write tng_function_status DECLSPECDLLEXPORT tng_util_vel_with_time_write (tng_trajectory_t tng_data, const int64_t frame_nr, - const int64_t time, + const double time, const float *velocities); /** @@ -2603,7 +2603,7 @@ tng_function_status DECLSPECDLLEXPORT tng_util_vel_with_time_write tng_function_status DECLSPECDLLEXPORT tng_util_force_with_time_write (tng_trajectory_t tng_data, const int64_t frame_nr, - const int64_t time, + const double time, const float *forces); /** @@ -2627,7 +2627,7 @@ tng_function_status DECLSPECDLLEXPORT tng_util_force_with_time_write tng_function_status DECLSPECDLLEXPORT tng_util_box_shape_with_time_write (tng_trajectory_t tng_data, const int64_t frame_nr, - const int64_t time, + const double time, const float *box_shape); /** @} */ // end of group2 |