aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-w32gdi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gamma-w32gdi.c')
-rw-r--r--src/gamma-w32gdi.c11
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);