diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 01:30:35 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 01:30:35 -0500 |
commit | 4a572e85e904ef4876544f1e6d9dec9d1a13b895 (patch) | |
tree | 3c85bc99d5d3fefa5b46a6e1c513b219bd59ea9f /src/redshift.h | |
parent | redshift: Add enum member for unknown period_t (PERIOD_NONE) (diff) | |
download | redshift-ng-4a572e85e904ef4876544f1e6d9dec9d1a13b895.tar.gz redshift-ng-4a572e85e904ef4876544f1e6d9dec9d1a13b895.tar.bz2 redshift-ng-4a572e85e904ef4876544f1e6d9dec9d1a13b895.tar.xz |
redshift: Move period_t to header
Diffstat (limited to 'src/redshift.h')
-rw-r--r-- | src/redshift.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/redshift.h b/src/redshift.h index e8be4e6..5f4335c 100644 --- a/src/redshift.h +++ b/src/redshift.h @@ -24,6 +24,15 @@ #include <stdlib.h> +/* Periods of day. */ +typedef enum { + PERIOD_NONE = 0, + PERIOD_DAYTIME, + PERIOD_NIGHT, + PERIOD_TRANSITION +} period_t; + + /* Color setting */ typedef struct { int temperature; |