diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2021-03-30 10:59:39 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2021-04-01 00:04:14 +0200 |
commit | 5ff1d6955496b3cf9a35042c9ac35db43bc336b1 (patch) | |
tree | 6d470f7eb448f59f53e8df1010aec9dad8ce1f72 /base/gdevprn.h | |
parent | Import Ghostscript 9.53.1 (diff) | |
download | ghostscript-gpl-patches-5ff1d6955496b3cf9a35042c9ac35db43bc336b1.tar.gz ghostscript-gpl-patches-5ff1d6955496b3cf9a35042c9ac35db43bc336b1.tar.bz2 ghostscript-gpl-patches-5ff1d6955496b3cf9a35042c9ac35db43bc336b1.zip |
Import Ghostscript 9.54ghostscript-9.54
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'base/gdevprn.h')
-rw-r--r-- | base/gdevprn.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/gdevprn.h b/base/gdevprn.h index 5b2690b6..fbc7cb0c 100644 --- a/base/gdevprn.h +++ b/base/gdevprn.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2020 Artifex Software, Inc. +/* Copyright (C) 2001-2021 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or @@ -141,7 +141,7 @@ typedef struct bg_print_s { bool file_is_new; /* true iff file just opened */\ gp_file *file; /* output file */\ bool bg_print_requested; /* request background printing of page from clist */\ - bg_print_t bg_print; /* background printing data shared with thread */\ + bg_print_t *bg_print; /* background printing data shared with thread */\ int num_render_threads_requested; /* for multiple band rendering threads */\ gx_saved_pages_list *saved_pages_list; /* list when we are saving pages instead of printing */\ gx_device_procs save_procs_while_delaying_erasepage /* save device procs while delaying erasepage. */ @@ -309,7 +309,7 @@ extern const gx_device_procs prn_bg_procs; 0/*false*/, /* file_is_new */\ 0, /* *file */\ 0/*false*/, /* bg_print_requested */\ - { 0/*sema*/, 0/*device*/, 0/*thread_id*/, 0/*num_copies*/, 0/*return_code*/ }, /* bg_print */\ + 0, /* *bg_print */\ 0, /* num_render_threads_requested */\ 0, /* saved_pages_list */\ { 0 } /* save_procs_while_delaying_erasepage */ |