Remove gmx custom fixed int (e.g. gmx_int64_t) types
[alexxy/gromacs.git] / src / gromacs / fileio / xtcio.h
index 71f88a9901e64026df7b764e018b70a4ecb2f72a..20684d17bb5b0beaa1e6eb3c0d1b011f7a827b84 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
- * Copyright (c) 2013,2014,2015,2016, by the GROMACS development team, led by
+ * Copyright (c) 2013,2014,2015,2016,2018, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -66,17 +66,17 @@ void close_xtc(struct t_fileio *fio);
 /* Close the file for xdr I/O */
 
 int read_first_xtc(struct t_fileio *fio,
-                   int *natoms, gmx_int64_t *step, real *time,
+                   int *natoms, int64_t *step, real *time,
                    matrix box, rvec **x, real *prec, gmx_bool *bOK);
 /* Open xtc file, read xtc file first time, allocate memory for x */
 
 int read_next_xtc(struct t_fileio *fio,
-                  int natoms, gmx_int64_t *step, real *time,
+                  int natoms, int64_t *step, real *time,
                   matrix box, rvec *x, real *prec, gmx_bool *bOK);
 /* Read subsequent frames */
 
 int write_xtc(struct t_fileio *fio,
-              int natoms, gmx_int64_t step, real time,
+              int natoms, int64_t step, real time,
               const rvec *box, const rvec *x, real prec);
 /* Write a frame to xtc file */