diff options
author | Thomas White <taw@physics.org> | 2017-07-06 17:15:10 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2017-07-06 17:15:10 +0200 |
commit | 548be7934456e116c5a8832c6e8e2f82f165c516 (patch) | |
tree | 2376488e8e1402999bbf7a2ebb97b74f003dfdf8 /libcrystfel/src/taketwo.h | |
parent | 12641fdf021f45fe7a4b19a384b80f3cfe8f9277 (diff) |
Use void pointers for indexing engine private stuff
Diffstat (limited to 'libcrystfel/src/taketwo.h')
-rw-r--r-- | libcrystfel/src/taketwo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcrystfel/src/taketwo.h b/libcrystfel/src/taketwo.h index 35f7cbe3..4c06e334 100644 --- a/libcrystfel/src/taketwo.h +++ b/libcrystfel/src/taketwo.h @@ -33,9 +33,9 @@ #include "cell.h" -extern IndexingPrivate *taketwo_prepare(IndexingMethod *indm, UnitCell *cell, - struct detector *det, float *ltl); -extern int taketwo_index(struct image *image, IndexingPrivate *ipriv); +extern void *taketwo_prepare(IndexingMethod *indm, UnitCell *cell, + struct detector *det, float *ltl); +extern int taketwo_index(struct image *image, void *priv); extern void taketwo_cleanup(IndexingPrivate *pp); #endif /* TAKETWO_H */ |