diff options
author | Thomas White <taw@physics.org> | 2017-07-06 17:04:40 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2017-07-06 17:17:28 +0200 |
commit | dc3395900fc3ce0d3961757628ff83ad6456be19 (patch) | |
tree | 59314c1690fe704dad08df13d9bc9929ee8cff95 /libcrystfel/src/dirax.h | |
parent | cfb3d2ebc34f526aff4142c0d26e3955bc1ec734 (diff) |
Indexing engine private pointers should be void *
Diffstat (limited to 'libcrystfel/src/dirax.h')
-rw-r--r-- | libcrystfel/src/dirax.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libcrystfel/src/dirax.h b/libcrystfel/src/dirax.h index 9776f3f0..96ba6dbc 100644 --- a/libcrystfel/src/dirax.h +++ b/libcrystfel/src/dirax.h @@ -3,11 +3,11 @@ * * Invoke the DirAx auto-indexing program * - * Copyright © 2012-2014 Deutsches Elektronen-Synchrotron DESY, + * Copyright © 2012-2017 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: - * 2010,2012-2014 Thomas White <taw@physics.org> + * 2010,2012-2014,2017 Thomas White <taw@physics.org> * * This file is part of CrystFEL. * @@ -39,13 +39,12 @@ extern "C" { #endif -extern int run_dirax(struct image *image, IndexingPrivate *ipriv); +extern int run_dirax(struct image *image, void *ipriv); -extern IndexingPrivate *dirax_prepare(IndexingMethod *indm, - UnitCell *cell, struct detector *det, - float *ltl); +extern void *dirax_prepare(IndexingMethod *indm, + UnitCell *cell, struct detector *det, float *ltl); -extern void dirax_cleanup(IndexingPrivate *pp); +extern void dirax_cleanup(void *pp); #ifdef __cplusplus } |