aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2014-12-28 01:30:35 -0500
committerJon Lund Steffensen <jonlst@gmail.com>2014-12-28 01:30:35 -0500
commit4a572e85e904ef4876544f1e6d9dec9d1a13b895 (patch)
tree3c85bc99d5d3fefa5b46a6e1c513b219bd59ea9f
parentredshift: Add enum member for unknown period_t (PERIOD_NONE) (diff)
downloadredshift-ng-4a572e85e904ef4876544f1e6d9dec9d1a13b895.tar.gz
redshift-ng-4a572e85e904ef4876544f1e6d9dec9d1a13b895.tar.bz2
redshift-ng-4a572e85e904ef4876544f1e6d9dec9d1a13b895.tar.xz
redshift: Move period_t to header
-rw-r--r--src/redshift.c8
-rw-r--r--src/redshift.h9
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;