blob: 402636d142e239a0068839cba8f0de18839d2417 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef ASDF_H
#define ASDF_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "index.h"
#ifdef __cplusplus
extern "C" {
#endif
extern int run_asdf(struct image *image, IndexingPrivate *ipriv);
extern IndexingPrivate *asdf_prepare(IndexingMethod *indm,
UnitCell *cell, struct detector *det,
float *ltl);
extern void asdf_cleanup(IndexingPrivate *pp);
#ifdef __cplusplus
}
#endif
#endif /* DIRAX_H */
|