1 /*
2 # This file is part of the Astrometry.net suite.
3 # Licensed under a 3-clause BSD style license - see LICENSE
4 */
5 
6 #ifndef SOLVEDCLIENT_H
7 #define SOLVEDCLIENT_H
8 
9 #include "astrometry/bl.h"
10 
11 int solvedclient_set_server(char* addr);
12 
13 int solvedclient_get(int filenum, int fieldnum);
14 
15 void solvedclient_set(int filenum, int fieldnum);
16 
17 il* solvedclient_get_fields(int filenum, int firstfield, int lastfield,
18 							int maxnfields);
19 
20 #endif
21