diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-27 20:00:54 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-27 20:00:54 +0100 |
commit | 8731767251de4633b0f8d9e17f6f0e15b5d3ea18 (patch) | |
tree | 35d152f922972f11bcd0aec0f2c864e990fec48d /libgeome.h | |
parent | Add patterns for commands (breaks backwards compatbility because libgeome_get_from_netservice was inlined) + add libgeome_get_portability (diff) | |
download | libgeome-8731767251de4633b0f8d9e17f6f0e15b5d3ea18.tar.gz libgeome-8731767251de4633b0f8d9e17f6f0e15b5d3ea18.tar.bz2 libgeome-8731767251de4633b0f8d9e17f6f0e15b5d3ea18.tar.xz |
Add libgeome_default_geolocation_file
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'libgeome.h')
-rw-r--r-- | libgeome.h | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -246,6 +246,14 @@ extern const struct libgeome_netservice libgeome_netservices[]; */ extern const size_t libgeome_netservices_count; +/** + * The default file for `libgeome_get_from_file` + * + * By default this is `/etc/geolocation`, but it can be + * changed at compile-time + */ +extern const char *const libgeome_default_geolocation_file; + /** * Create a basic initialisation for `struct libgeome_context` @@ -320,7 +328,7 @@ int libgeome_get_from_timezone(struct libgeome_context *ctx, struct libgeome_dat * This function will get both the latitude and * the longitude but nothing more * - * The default file is /etc/geolocation unless changed at compile time + * The default file stored in `libgeome_default_geolocation_file` * * @param ctx Library context * @param out Output parameter, `out->requested_data` must be set |