summaryrefslogtreecommitdiff
path: root/contrib/gdevmd2k.c
diff options
context:
space:
mode:
authorRobin Watts <Robin.Watts@artifex.com>2021-04-26 18:10:56 +0100
committerRobin Watts <Robin.Watts@artifex.com>2021-04-26 19:49:13 +0100
commit20610dc28ee3cf7e64ad46f11e9b96fb3befba00 (patch)
treecaf1ecd133beea5ab478858fc8f022081912ab89 /contrib/gdevmd2k.c
parentedd20b3b8c3c1a7117dd5dbee0b54cd1de7838bf (diff)
downloadghostpdl-20610dc28ee3cf7e64ad46f11e9b96fb3befba00.tar.gz
Split initialize device proc into two.
The device initialize function currently performs 2 jobs. Firstly, it fills out the device_procs. Secondly, it performs any minimal initialization required by the device (typically none). At various points in the code we want to be able to copy procs from one 'prototype' device to another, so we call initialize for that. This populates the device procs, but does other work that typically requires a 'derived device' structure rather than a vanilla gx_device to work in. Accordingly, we split the job into two; initialize_device_procs (the first part) and initialize_device (the second part). The initialize_device_procs function will set up the initialize_device function pointer along with the rest if required.
Diffstat (limited to 'contrib/gdevmd2k.c')
-rw-r--r--contrib/gdevmd2k.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/contrib/gdevmd2k.c b/contrib/gdevmd2k.c
index 0f1c2123f..826846f96 100644
--- a/contrib/gdevmd2k.c
+++ b/contrib/gdevmd2k.c
@@ -64,13 +64,10 @@ typedef struct gx_device_alps_s gx_device_alps;
#define dev_alps ((gx_device_alps *) pdev)
-static int
-alps_initialize(gx_device *dev)
+static void
+alps_initialize_device_procs(gx_device *dev)
{
- int code = gdev_prn_initialize(dev);
-
- if (code < 0)
- return code;
+ gdev_prn_initialize_device_procs(dev);
set_dev_proc(dev, open_device, alps_open);
set_dev_proc(dev, map_color_rgb, alps_map_color_rgb);
@@ -83,13 +80,11 @@ alps_initialize(gx_device *dev)
* by the system to the default. For compatibility we do the same. */
set_dev_proc(dev, encode_color, NULL);
set_dev_proc(dev, decode_color, NULL);
-
- return 0;
}
#define alps_device(dname, print_page) \
{\
- prn_device_body(gx_device_alps, alps_initialize, dname,\
+ prn_device_body(gx_device_alps, alps_initialize_device_procs, dname,\
DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,\
600, 600,\
0, 0, 0, 0, /* margin */\