diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-12-02 16:35:50 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-12-02 16:35:50 (GMT) |
commit | 21f3d6c7859cd93233938fef849e07ff405a28ea (patch) | |
tree | 2b6f4e602e1af6f9a90504bff20b19f110ca7be1 /include | |
parent | 7e6f14f9f4d8755f5430e4771d21469fe7401e41 (diff) |
More fixes to molecule getter functions.
Diffstat (limited to 'include')
-rw-r--r-- | include/tng_io.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/tng_io.h b/include/tng_io.h index 8758c48..6c4ee6d 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); /** |