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.c24
1 files changed, 17 insertions, 7 deletions
diff --git a/src/gamma-w32gdi.c b/src/gamma-w32gdi.c
index 2dc12f3..ac6fb0f 100644
--- a/src/gamma-w32gdi.c
+++ b/src/gamma-w32gdi.c
@@ -38,14 +38,18 @@
int
-w32gdi_init(w32gdi_state_t *state, char *args)
+w32gdi_init(w32gdi_state_t *state)
{
- BOOL r;
+ state->saved_ramps = NULL;
+ state->hDC = NULL;
- if (args != NULL) {
- fputs(_("Too many arguments.\n"), stderr);
- return -1;
- }
+ return 0;
+}
+
+int
+w32gdi_init(w32gdi_state_t *state)
+{
+ BOOL r;
/* Open device context */
state->hDC = GetDC(NULL);
@@ -88,7 +92,7 @@ w32gdi_free(w32gdi_state_t *state)
free(state->saved_ramps);
/* Release device context */
- ReleaseDC(NULL, state->hDC);
+ if (state->hDC != NULL) ReleaseDC(NULL, state->hDC);
}
@@ -99,6 +103,12 @@ w32gdi_print_help(FILE *f)
fputs("\n", f);
}
+int
+w32gdi_set_option(w32gdi_state_t *state, const char *key, const char *value)
+{
+ return -1;
+}
+
void
w32gdi_restore(w32gdi_state_t *state)
{