aboutsummaryrefslogtreecommitdiffstats
path: root/src/redshift.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-12-19 08:14:23 +0100
committerMattias Andrée <maandree@kth.se>2016-12-19 08:14:23 +0100
commit0d24c34d7fea73a0002a79e995f7c7f30b03a054 (patch)
tree01b6394e5f8b39047ed731ce82ffb193edef5b57 /src/redshift.h
parentMerge pull request #295 from arnej/windowsfix (diff)
downloadredshift-ng-0d24c34d7fea73a0002a79e995f7c7f30b03a054.tar.gz
redshift-ng-0d24c34d7fea73a0002a79e995f7c7f30b03a054.tar.bz2
redshift-ng-0d24c34d7fea73a0002a79e995f7c7f30b03a054.tar.xz
Add coopgamma backend
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/redshift.h')
-rw-r--r--src/redshift.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/redshift.h b/src/redshift.h
index bac8e34..91d9d0d 100644
--- a/src/redshift.h
+++ b/src/redshift.h
@@ -24,6 +24,15 @@
#include <stdlib.h>
+/* Program modes. */
+typedef enum {
+ PROGRAM_MODE_CONTINUAL,
+ PROGRAM_MODE_ONE_SHOT,
+ PROGRAM_MODE_PRINT,
+ PROGRAM_MODE_RESET,
+ PROGRAM_MODE_MANUAL
+} program_mode_t;
+
/* Location */
typedef struct {
float lat;
@@ -48,7 +57,7 @@ typedef struct {
/* Gamma adjustment method */
typedef int gamma_method_init_func(void *state);
-typedef int gamma_method_start_func(void *state);
+typedef int gamma_method_start_func(void *state, program_mode_t mode);
typedef void gamma_method_free_func(void *state);
typedef void gamma_method_print_help_func(FILE *f);
typedef int gamma_method_set_option_func(void *state, const char *key,