blob: dc984f6b40cf91ae1ef1ddcf510cb842b71f0605 (
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
29
30
|
/*
* gpsdclient.h -- common functions for GPSD clients
*
* This file is Copyright (c) 2010 by the GPSD project
* BSD terms apply: see the file COPYING in the distribution root for details.
*
*/
#ifndef _GPSD_GPSDCLIENT_H_
#define _GPSD_GPSDCLIENT_H_
struct fixsource_t
/* describe a data source */
{
char *spec; /* pointer to actual storage */
char *server;
char *port;
/*@null@*/char *device;
};
enum unit {unspecified, imperial, nautical, metric};
enum unit gpsd_units(void);
enum deg_str_type { deg_dd, deg_ddmm, deg_ddmmss };
extern /*@observer@*/ char *deg_to_str( enum deg_str_type type, double f);
extern void gpsd_source_spec(/*@null@*/const char *fromstring,
/*@out@*/struct fixsource_t *source);
#endif /* _GPSDCLIENT_H_ */
/* gpsdclient.h ends here */
|