diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-21 16:50:15 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-21 16:50:15 +0100 |
commit | 96a6575e23b5baebcdd38269b80f47cc02a2627e (patch) | |
tree | 0561580306c882e0e7a4f76c542130bb7ee44537 /src/gamma-dummy.c | |
parent | Refactor (diff) | |
download | redshift-ng-96a6575e23b5baebcdd38269b80f47cc02a2627e.tar.gz redshift-ng-96a6575e23b5baebcdd38269b80f47cc02a2627e.tar.bz2 redshift-ng-96a6575e23b5baebcdd38269b80f47cc02a2627e.tar.xz |
Refactor
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/gamma-dummy.c')
-rw-r--r-- | src/gamma-dummy.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/gamma-dummy.c b/src/gamma-dummy.c index 1751bbd..7074cd9 100644 --- a/src/gamma-dummy.c +++ b/src/gamma-dummy.c @@ -1,4 +1,5 @@ -/* redshift-ng - Automatically adjust display colour temperature according the Sun +/*- + * redshift-ng - Automatically adjust display colour temperature according the Sun * * Copyright (c) 2009-2018 Jon Lund Steffensen <jonlst@gmail.com> * Copyright (c) 2014-2016, 2025 Mattias Andrée <m@maandree.se> @@ -26,6 +27,7 @@ dummy_create(struct gamma_state **state_out) return 0; } + static int dummy_start(struct gamma_state *state) { @@ -34,18 +36,21 @@ dummy_start(struct gamma_state *state) return 0; } + static void dummy_restore(struct gamma_state *state) { (void) state; } + static void dummy_free(struct gamma_state *state) { (void) state; } + static void dummy_print_help(FILE *f) { @@ -53,6 +58,7 @@ dummy_print_help(FILE *f) fputs("\n", f); } + static int dummy_set_option(struct gamma_state *state, const char *key, const char *value) { @@ -62,6 +68,7 @@ dummy_set_option(struct gamma_state *state, const char *key, const char *value) return -1; } + static int dummy_apply(struct gamma_state *state, const struct colour_setting *setting, int preserve) { @@ -72,4 +79,4 @@ dummy_apply(struct gamma_state *state, const struct colour_setting *setting, int } -const struct gamma_method dummy_gamma_method = GAMMA_METHOD_INIT("dummy", 0, dummy); +const struct gamma_method dummy_gamma_method = GAMMA_METHOD_INIT("dummy", 0, 0, dummy); |