diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-12-02 14:11:59 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-12-02 14:11:59 (GMT) |
commit | 0021b1e62ea5c329ee523867bc2f9a5f695c4970 (patch) | |
tree | e18cb2f8d396d21a8255ec707bcb1f76864efcb8 /include | |
parent | b3e3f138e35160c160f0b02a3a0eaeb16f470336 (diff) |
More fixes to getter functions.
Diffstat (limited to 'include')
-rw-r--r-- | include/tng_io.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/tng_io.h b/include/tng_io.h index c713fbd..8758c48 100644 --- a/include/tng_io.h +++ b/include/tng_io.h @@ -1632,7 +1632,7 @@ tng_function_status DECLSPECDLLEXPORT tng_molecule_system_copy(tng_trajectory_t tng_function_status DECLSPECDLLEXPORT tng_molecule_chains_get (tng_trajectory_t tng_data, tng_molecule_t molecule, - tng_chain_t *chains, + tng_chain_t **chains, int64_t *n); /** @@ -1652,7 +1652,7 @@ tng_function_status DECLSPECDLLEXPORT tng_molecule_chains_get tng_function_status DECLSPECDLLEXPORT tng_molecule_residues_get (tng_trajectory_t tng_data, tng_molecule_t molecule, - tng_residue_t *residues, + tng_residue_t **residues, int64_t *n); /** @@ -1672,7 +1672,7 @@ tng_function_status DECLSPECDLLEXPORT tng_molecule_residues_get tng_function_status DECLSPECDLLEXPORT tng_molecule_atoms_get (tng_trajectory_t tng_data, tng_molecule_t molecule, - tng_atom_t *atoms, + tng_atom_t **atoms, int64_t *n); /** @@ -1834,7 +1834,7 @@ tng_function_status DECLSPECDLLEXPORT tng_chain_name_set tng_function_status DECLSPECDLLEXPORT tng_chain_residues_get (const tng_trajectory_t tng_data, const tng_chain_t chain, - tng_residue_t *residues, + tng_residue_t **residues, int64_t *n); /** @@ -1956,7 +1956,7 @@ tng_function_status DECLSPECDLLEXPORT tng_residue_atoms_get (const tng_trajectory_t tng_data, const tng_molecule_t molecule, const tng_residue_t residue, - tng_atom_t *atoms, + tng_atom_t **atoms, int64_t *n); /** @@ -3195,7 +3195,7 @@ tng_function_status DECLSPECDLLEXPORT tng_util_trajectory_molecules_get (tng_trajectory_t tng_data, int64_t *n_mols, int64_t **molecule_cnt_list, - tng_molecule_t *mols); + tng_molecule_t **mols); /* * @brief High-level function for adding a molecule to the mol system. |