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-w32gdi.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-w32gdi.c')
-rw-r--r-- | src/gamma-w32gdi.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/gamma-w32gdi.c b/src/gamma-w32gdi.c index 533365d..6912167 100644 --- a/src/gamma-w32gdi.c +++ b/src/gamma-w32gdi.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> @@ -40,6 +41,7 @@ w32gdi_create(struct gamma_state **state_out) return 0; } + static int w32gdi_start(struct gamma_state *state) { @@ -76,6 +78,7 @@ w32gdi_start(struct gamma_state *state) return 0; } + static void w32gdi_free(struct gamma_state *state) { @@ -84,6 +87,7 @@ w32gdi_free(struct gamma_state *state) } + static void w32gdi_print_help(FILE *f) { @@ -91,6 +95,7 @@ w32gdi_print_help(FILE *f) fputs("\n", f); } + static int w32gdi_set_option(struct gamma_state *state, const char *key, const char *value) { @@ -104,6 +109,7 @@ w32gdi_set_option(struct gamma_state *state, const char *key, const char *value) return 0; } + static void w32gdi_restore(struct gamma_state *state) { @@ -132,6 +138,7 @@ done: ReleaseDC(NULL, hDC); } + static int w32gdi_apply(struct gamma_state *state, const colour_setting_t *setting, int preserve) { @@ -191,4 +198,4 @@ done: } -const struct gamma_method w32gdi_gamma_method = GAMMA_METHOD_INIT("winfdi", 1, w32gdi); +const struct gamma_method w32gdi_gamma_method = GAMMA_METHOD_INIT("winfdi", 1, 0, w32gdi); |