diff options
Diffstat (limited to '')
-rw-r--r-- | src/gamma-w32gdi.c | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/src/gamma-w32gdi.c b/src/gamma-w32gdi.c index d06f6b1..a09f768 100644 --- a/src/gamma-w32gdi.c +++ b/src/gamma-w32gdi.c @@ -32,26 +32,13 @@ w32gdi_print_help(FILE *f) { fputs(_("Adjust gamma ramps with the Windows GDI.\n"), f); fputs("\n", f); + direct_print_help(f, LIBGAMMA_METHOD_W32_GDI); } -static int -w32gdi_set_option(struct gamma_state *state, const char *key, const char *value) -{ - (void) state; - (void) value; - if (!strcasecmp(key, "preserve")) { - weprintf(_("Deprecated method parameter ignored: `%s'."), key); - return 0; - } else { - weprintf(_("Unknown method parameter: `%s'."), key); - return -1; - } -} - - -#define w32gdi_start direct_start -#define w32gdi_apply direct_apply -#define w32gdi_restore direct_restore -#define w32gdi_free direct_free +#define w32gdi_set_option direct_set_option +#define w32gdi_start direct_start +#define w32gdi_apply direct_apply +#define w32gdi_restore direct_restore +#define w32gdi_free direct_free const struct gamma_method w32gdi_gamma_method = GAMMA_METHOD_INIT("wingdi", 1, 0, w32gdi); |