diff options
-rw-r--r-- | src/redshift.c | 8 | ||||
-rw-r--r-- | src/redshift.h | 9 |
2 files changed, 9 insertions, 8 deletions
diff --git a/src/redshift.c b/src/redshift.c index b09f39c..11b7f34 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -297,14 +297,6 @@ typedef enum { PROGRAM_MODE_MANUAL } program_mode_t; -/* Periods of day. */ -typedef enum { - PERIOD_NONE = 0, - PERIOD_DAYTIME, - PERIOD_NIGHT, - PERIOD_TRANSITION -} period_t; - /* Names of periods of day */ static const char *period_names[] = { N_("None"), 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; |