summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pdf/pdf_device.h')
-rw-r--r--pdf/pdf_device.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/pdf/pdf_device.h b/pdf/pdf_device.h
new file mode 100644
index 00000000..ca9965a7
--- /dev/null
+++ b/pdf/pdf_device.h
@@ -0,0 +1,27 @@
+/* Copyright (C) 2019-2021 Artifex Software, Inc.
+ All Rights Reserved.
+
+ This software is provided AS-IS with no warranty, either express or
+ implied.
+
+ This software is distributed under license and may not be copied,
+ modified or distributed except as expressly authorized under the terms
+ of the license contained in the file LICENSE in this distribution.
+
+ Refer to licensing information at http://www.artifex.com or contact
+ Artifex Software, Inc., 1305 Grant Avenue - Suite 200, Novato,
+ CA 94945, U.S.A., +1(415)492-9861, for further information.
+*/
+
+#ifndef PDF_DEVICE
+#define PDF_DEVICE
+
+int pdfi_device_check_param(gx_device *dev, const char *param, gs_c_param_list *list);
+bool pdfi_device_check_param_bool(gx_device *dev, const char *param);
+bool pdfi_device_check_param_exists(gx_device *dev, const char *param);
+int pdfi_device_set_param_string(gx_device *dev, const char *paramname, const char *value);
+int pdfi_device_set_param_bool(gx_device *dev, const char *param, bool value);
+void pdfi_device_set_flags(pdf_context *ctx);
+int pdfi_device_misc_config(pdf_context *ctx);
+
+#endif