diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-31 00:11:24 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2015-01-04 16:32:47 -0500 |
commit | 799b08214dffc3c86e30c4547acd9015078a18ac (patch) | |
tree | fd01ab4421eee6bff66495431de5fb00b047245b /src/redshift.h | |
parent | Merge changes from 1.10 release branch (diff) | |
download | redshift-ng-799b08214dffc3c86e30c4547acd9015078a18ac.tar.gz redshift-ng-799b08214dffc3c86e30c4547acd9015078a18ac.tar.bz2 redshift-ng-799b08214dffc3c86e30c4547acd9015078a18ac.tar.xz |
Add location_t type with lat/lon fields
Diffstat (limited to 'src/redshift.h')
-rw-r--r-- | src/redshift.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/redshift.h b/src/redshift.h index 5f4335c..bac8e34 100644 --- a/src/redshift.h +++ b/src/redshift.h @@ -24,6 +24,12 @@ #include <stdlib.h> +/* Location */ +typedef struct { + float lat; + float lon; +} location_t; + /* Periods of day. */ typedef enum { PERIOD_NONE = 0, @@ -32,7 +38,6 @@ typedef enum { PERIOD_TRANSITION } period_t; - /* Color setting */ typedef struct { int temperature; @@ -84,8 +89,7 @@ typedef void location_provider_free_func(void *state); typedef void location_provider_print_help_func(FILE *f); typedef int location_provider_set_option_func(void *state, const char *key, const char *value); -typedef int location_provider_get_location_func(void *state, float *lat, - float *lon); +typedef int location_provider_get_location_func(void *state, location_t *loc); typedef struct { char *name; |