]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/ppd.h
Greatly simplify the man page handling.
[thirdparty/cups.git] / cups / ppd.h
1 /*
2 * PostScript Printer Description definitions for CUPS.
3 *
4 * THESE APIS ARE DEPRECATED. THIS HEADER AND THESE FUNCTIONS WILL BE REMOVED
5 * IN A FUTURE RELEASE OF CUPS.
6 *
7 * Copyright © 2007-2019 by Apple Inc.
8 * Copyright © 1997-2007 by Easy Software Products, all rights reserved.
9 *
10 * Licensed under Apache License v2.0. See the file "LICENSE" for more
11 * information.
12 *
13 * PostScript is a trademark of Adobe Systems, Inc.
14 */
15
16 #ifndef _CUPS_PPD_H_
17 # define _CUPS_PPD_H_
18
19 /*
20 * Include necessary headers...
21 */
22
23 # include <stdio.h>
24 # include "cups.h"
25 # include "array.h"
26 # include "file.h"
27 # include "raster.h"
28
29
30 /*
31 * C++ magic...
32 */
33
34 # ifdef __cplusplus
35 extern "C" {
36 # endif /* __cplusplus */
37
38
39 /*
40 * PPD version...
41 */
42
43 # define PPD_VERSION 4.3 /* Kept in sync with Adobe version number */
44
45
46 /*
47 * PPD size limits (defined in Adobe spec)
48 */
49
50 # define PPD_MAX_NAME 41 /* Maximum size of name + 1 for nul */
51 # define PPD_MAX_TEXT 81 /* Maximum size of text + 1 for nul */
52 # define PPD_MAX_LINE 256 /* Maximum size of line + 1 for nul */
53
54
55 /*
56 * Types and structures...
57 */
58
59 typedef int (*cups_interpret_cb_t)(cups_page_header2_t *header, int preferred_bits);
60 /**** cupsRasterInterpretPPD callback function
61 *
62 * This function is called by
63 * @link cupsRasterInterpretPPD@ to
64 * validate (and update, as needed)
65 * the page header attributes. The
66 * "preferred_bits" argument provides
67 * the value of the
68 * @code cupsPreferredBitsPerColor@
69 * key from the PostScript page device
70 * dictionary and is 0 if undefined.
71 ****/
72
73 typedef enum ppd_ui_e /**** UI Types @deprecated@ ****/
74 {
75 PPD_UI_BOOLEAN, /* True or False option */
76 PPD_UI_PICKONE, /* Pick one from a list */
77 PPD_UI_PICKMANY /* Pick zero or more from a list */
78 } ppd_ui_t;
79
80 typedef enum ppd_section_e /**** Order dependency sections @deprecated@ ****/
81 {
82 PPD_ORDER_ANY, /* Option code can be anywhere in the file */
83 PPD_ORDER_DOCUMENT, /* ... must be in the DocumentSetup section */
84 PPD_ORDER_EXIT, /* ... must be sent prior to the document */
85 PPD_ORDER_JCL, /* ... must be sent as a JCL command */
86 PPD_ORDER_PAGE, /* ... must be in the PageSetup section */
87 PPD_ORDER_PROLOG /* ... must be in the Prolog section */
88 } ppd_section_t;
89
90 typedef enum ppd_cs_e /**** Colorspaces @deprecated@ ****/
91 {
92 PPD_CS_CMYK = -4, /* CMYK colorspace */
93 PPD_CS_CMY, /* CMY colorspace */
94 PPD_CS_GRAY = 1, /* Grayscale colorspace */
95 PPD_CS_RGB = 3, /* RGB colorspace */
96 PPD_CS_RGBK, /* RGBK (K = gray) colorspace */
97 PPD_CS_N /* DeviceN colorspace */
98 } ppd_cs_t;
99
100 typedef enum ppd_status_e /**** Status Codes @deprecated@ ****/
101 {
102 PPD_OK = 0, /* OK */
103 PPD_FILE_OPEN_ERROR, /* Unable to open PPD file */
104 PPD_NULL_FILE, /* NULL PPD file pointer */
105 PPD_ALLOC_ERROR, /* Memory allocation error */
106 PPD_MISSING_PPDADOBE4, /* Missing PPD-Adobe-4.x header */
107 PPD_MISSING_VALUE, /* Missing value string */
108 PPD_INTERNAL_ERROR, /* Internal error */
109 PPD_BAD_OPEN_GROUP, /* Bad OpenGroup */
110 PPD_NESTED_OPEN_GROUP, /* OpenGroup without a CloseGroup first */
111 PPD_BAD_OPEN_UI, /* Bad OpenUI/JCLOpenUI */
112 PPD_NESTED_OPEN_UI, /* OpenUI/JCLOpenUI without a CloseUI/JCLCloseUI first */
113 PPD_BAD_ORDER_DEPENDENCY, /* Bad OrderDependency */
114 PPD_BAD_UI_CONSTRAINTS, /* Bad UIConstraints */
115 PPD_MISSING_ASTERISK, /* Missing asterisk in column 0 */
116 PPD_LINE_TOO_LONG, /* Line longer than 255 chars */
117 PPD_ILLEGAL_CHARACTER, /* Illegal control character */
118 PPD_ILLEGAL_MAIN_KEYWORD, /* Illegal main keyword string */
119 PPD_ILLEGAL_OPTION_KEYWORD, /* Illegal option keyword string */
120 PPD_ILLEGAL_TRANSLATION, /* Illegal translation string */
121 PPD_ILLEGAL_WHITESPACE, /* Illegal whitespace character */
122 PPD_BAD_CUSTOM_PARAM, /* Bad custom parameter */
123 PPD_MISSING_OPTION_KEYWORD, /* Missing option keyword */
124 PPD_BAD_VALUE, /* Bad value string */
125 PPD_MISSING_CLOSE_GROUP, /* Missing CloseGroup */
126 PPD_BAD_CLOSE_UI, /* Bad CloseUI/JCLCloseUI */
127 PPD_MISSING_CLOSE_UI, /* Missing CloseUI/JCLCloseUI */
128 PPD_MAX_STATUS /* @private@ */
129 } ppd_status_t;
130
131 enum ppd_conform_e /**** Conformance Levels @deprecated@ ****/
132 {
133 PPD_CONFORM_RELAXED, /* Relax whitespace and control char */
134 PPD_CONFORM_STRICT /* Require strict conformance */
135 };
136
137 typedef enum ppd_conform_e ppd_conform_t;
138 /**** Conformance Levels @deprecated@ ****/
139
140 typedef struct ppd_attr_s /**** PPD Attribute Structure @deprecated@ ****/
141 {
142 char name[PPD_MAX_NAME]; /* Name of attribute (cupsXYZ) */
143 char spec[PPD_MAX_NAME]; /* Specifier string, if any */
144 char text[PPD_MAX_TEXT]; /* Human-readable text, if any */
145 char *value; /* Value string */
146 } ppd_attr_t;
147
148 typedef struct ppd_option_s ppd_option_t;
149 /**** Options @deprecated@ ****/
150
151 typedef struct ppd_choice_s /**** Option choices @deprecated@ ****/
152 {
153 char marked; /* 0 if not selected, 1 otherwise */
154 char choice[PPD_MAX_NAME]; /* Computer-readable option name */
155 char text[PPD_MAX_TEXT]; /* Human-readable option name */
156 char *code; /* Code to send for this option */
157 ppd_option_t *option; /* Pointer to parent option structure */
158 } ppd_choice_t;
159
160 struct ppd_option_s /**** Options @deprecated@ ****/
161 {
162 char conflicted; /* 0 if no conflicts exist, 1 otherwise */
163 char keyword[PPD_MAX_NAME]; /* Option keyword name ("PageSize", etc.) */
164 char defchoice[PPD_MAX_NAME];/* Default option choice */
165 char text[PPD_MAX_TEXT]; /* Human-readable text */
166 ppd_ui_t ui; /* Type of UI option */
167 ppd_section_t section; /* Section for command */
168 float order; /* Order number */
169 int num_choices; /* Number of option choices */
170 ppd_choice_t *choices; /* Option choices */
171 };
172
173 typedef struct ppd_group_s /**** Groups @deprecated@ ****/
174 {
175 /**** Group text strings are limited to 39 chars + nul in order to
176 **** preserve binary compatibility and allow applications to get
177 **** the group's keyword name.
178 ****/
179 char text[PPD_MAX_TEXT - PPD_MAX_NAME];
180 /* Human-readable group name */
181 char name[PPD_MAX_NAME]; /* Group name @since CUPS 1.1.18/macOS 10.3@ */
182 int num_options; /* Number of options */
183 ppd_option_t *options; /* Options */
184 int num_subgroups; /* Number of sub-groups */
185 struct ppd_group_s *subgroups; /* Sub-groups (max depth = 1) */
186 } ppd_group_t;
187
188 typedef struct ppd_const_s /**** Constraints @deprecated@ ****/
189 {
190 char option1[PPD_MAX_NAME]; /* First keyword */
191 char choice1[PPD_MAX_NAME]; /* First option/choice (blank for all) */
192 char option2[PPD_MAX_NAME]; /* Second keyword */
193 char choice2[PPD_MAX_NAME]; /* Second option/choice (blank for all) */
194 } ppd_const_t;
195
196 typedef struct ppd_size_s /**** Page Sizes @deprecated@ ****/
197 {
198 int marked; /* Page size selected? */
199 char name[PPD_MAX_NAME]; /* Media size option */
200 float width; /* Width of media in points */
201 float length; /* Length of media in points */
202 float left; /* Left printable margin in points */
203 float bottom; /* Bottom printable margin in points */
204 float right; /* Right printable margin in points */
205 float top; /* Top printable margin in points */
206 } ppd_size_t;
207
208 typedef struct ppd_emul_s /**** Emulators @deprecated@ ****/
209 {
210 char name[PPD_MAX_NAME]; /* Emulator name */
211 char *start; /* Code to switch to this emulation */
212 char *stop; /* Code to stop this emulation */
213 } ppd_emul_t;
214
215 typedef struct ppd_profile_s /**** sRGB Color Profiles @deprecated@ ****/
216 {
217 char resolution[PPD_MAX_NAME];
218 /* Resolution or "-" */
219 char media_type[PPD_MAX_NAME];
220 /* Media type or "-" */
221 float density; /* Ink density to use */
222 float gamma; /* Gamma correction to use */
223 float matrix[3][3]; /* Transform matrix */
224 } ppd_profile_t;
225
226 /**** New in CUPS 1.2/macOS 10.5 ****/
227 typedef enum ppd_cptype_e /**** Custom Parameter Type @deprecated@ ****/
228 {
229 PPD_CUSTOM_CURVE, /* Curve value for f(x) = x^value */
230 PPD_CUSTOM_INT, /* Integer number value */
231 PPD_CUSTOM_INVCURVE, /* Curve value for f(x) = x^(1/value) */
232 PPD_CUSTOM_PASSCODE, /* String of (hidden) numbers */
233 PPD_CUSTOM_PASSWORD, /* String of (hidden) characters */
234 PPD_CUSTOM_POINTS, /* Measurement value in points */
235 PPD_CUSTOM_REAL, /* Real number value */
236 PPD_CUSTOM_STRING /* String of characters */
237 } ppd_cptype_t;
238
239 typedef union ppd_cplimit_u /**** Custom Parameter Limit @deprecated@ ****/
240 {
241 float custom_curve; /* Gamma value */
242 int custom_int; /* Integer value */
243 float custom_invcurve; /* Gamma value */
244 int custom_passcode; /* Passcode length */
245 int custom_password; /* Password length */
246 float custom_points; /* Measurement value */
247 float custom_real; /* Real value */
248 int custom_string; /* String length */
249 } ppd_cplimit_t;
250
251 typedef union ppd_cpvalue_u /**** Custom Parameter Value @deprecated@ ****/
252 {
253 float custom_curve; /* Gamma value */
254 int custom_int; /* Integer value */
255 float custom_invcurve; /* Gamma value */
256 char *custom_passcode; /* Passcode value */
257 char *custom_password; /* Password value */
258 float custom_points; /* Measurement value */
259 float custom_real; /* Real value */
260 char *custom_string; /* String value */
261 } ppd_cpvalue_t;
262
263 typedef struct ppd_cparam_s /**** Custom Parameter @deprecated@ ****/
264 {
265 char name[PPD_MAX_NAME]; /* Parameter name */
266 char text[PPD_MAX_TEXT]; /* Human-readable text */
267 int order; /* Order (0 to N) */
268 ppd_cptype_t type; /* Parameter type */
269 ppd_cplimit_t minimum, /* Minimum value */
270 maximum; /* Maximum value */
271 ppd_cpvalue_t current; /* Current value */
272 } ppd_cparam_t;
273
274 typedef struct ppd_coption_s /**** Custom Option @deprecated@ ****/
275 {
276 char keyword[PPD_MAX_NAME]; /* Name of option that is being extended... */
277 ppd_option_t *option; /* Option that is being extended... */
278 int marked; /* Extended option is marked */
279 cups_array_t *params; /* Parameters */
280 } ppd_coption_t;
281
282 typedef struct _ppd_cache_s _ppd_cache_t;
283 /**** PPD cache and mapping data @deprecated@ ****/
284
285 typedef struct ppd_file_s /**** PPD File @deprecated@ ****/
286 {
287 int language_level; /* Language level of device */
288 int color_device; /* 1 = color device, 0 = grayscale */
289 int variable_sizes; /* 1 = supports variable sizes, 0 = doesn't */
290 int accurate_screens; /* 1 = supports accurate screens, 0 = not */
291 int contone_only; /* 1 = continuous tone only, 0 = not */
292 int landscape; /* -90 or 90 */
293 int model_number; /* Device-specific model number */
294 int manual_copies; /* 1 = Copies done manually, 0 = hardware */
295 int throughput; /* Pages per minute */
296 ppd_cs_t colorspace; /* Default colorspace */
297 char *patches; /* Patch commands to be sent to printer */
298 int num_emulations; /* Number of emulations supported (no longer supported) @private@ */
299 ppd_emul_t *emulations; /* Emulations and the code to invoke them (no longer supported) @private@ */
300 char *jcl_begin; /* Start JCL commands */
301 char *jcl_ps; /* Enter PostScript interpreter */
302 char *jcl_end; /* End JCL commands */
303 char *lang_encoding; /* Language encoding */
304 char *lang_version; /* Language version (English, Spanish, etc.) */
305 char *modelname; /* Model name (general) */
306 char *ttrasterizer; /* Truetype rasterizer */
307 char *manufacturer; /* Manufacturer name */
308 char *product; /* Product name (from PS RIP/interpreter) */
309 char *nickname; /* Nickname (specific) */
310 char *shortnickname; /* Short version of nickname */
311 int num_groups; /* Number of UI groups */
312 ppd_group_t *groups; /* UI groups */
313 int num_sizes; /* Number of page sizes */
314 ppd_size_t *sizes; /* Page sizes */
315 float custom_min[2]; /* Minimum variable page size */
316 float custom_max[2]; /* Maximum variable page size */
317 float custom_margins[4]; /* Margins around page */
318 int num_consts; /* Number of UI/Non-UI constraints */
319 ppd_const_t *consts; /* UI/Non-UI constraints */
320 int num_fonts; /* Number of pre-loaded fonts */
321 char **fonts; /* Pre-loaded fonts */
322 int num_profiles; /* Number of sRGB color profiles @deprecated@ */
323 ppd_profile_t *profiles; /* sRGB color profiles @deprecated@ */
324 int num_filters; /* Number of filters */
325 char **filters; /* Filter strings... */
326
327 /**** New in CUPS 1.1 ****/
328 int flip_duplex; /* 1 = Flip page for back sides @deprecated@ */
329
330 /**** New in CUPS 1.1.19 ****/
331 char *protocols; /* Protocols (BCP, TBCP) string @since CUPS 1.1.19/macOS 10.3@ */
332 char *pcfilename; /* PCFileName string @since CUPS 1.1.19/macOS 10.3@ */
333 int num_attrs; /* Number of attributes @since CUPS 1.1.19/macOS 10.3@ @private@ */
334 int cur_attr; /* Current attribute @since CUPS 1.1.19/macOS 10.3@ @private@ */
335 ppd_attr_t **attrs; /* Attributes @since CUPS 1.1.19/macOS 10.3@ @private@ */
336
337 /**** New in CUPS 1.2/macOS 10.5 ****/
338 cups_array_t *sorted_attrs; /* Attribute lookup array @since CUPS 1.2/macOS 10.5@ @private@ */
339 cups_array_t *options; /* Option lookup array @since CUPS 1.2/macOS 10.5@ @private@ */
340 cups_array_t *coptions; /* Custom options array @since CUPS 1.2/macOS 10.5@ @private@ */
341
342 /**** New in CUPS 1.3/macOS 10.5 ****/
343 cups_array_t *marked; /* Marked choices @since CUPS 1.3/macOS 10.5@ @private@ */
344
345 /**** New in CUPS 1.4/macOS 10.6 ****/
346 cups_array_t *cups_uiconstraints; /* cupsUIConstraints @since CUPS 1.4/macOS 10.6@ @private@ */
347
348 /**** New in CUPS 1.5 ****/
349 _ppd_cache_t *cache; /* PPD cache and mapping data @since CUPS 1.5/macOS 10.7@ @private@ */
350 } ppd_file_t;
351
352
353 /*
354 * Prototypes...
355 */
356
357 extern const char *cupsGetPPD(const char *name) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
358 extern const char *cupsGetPPD2(http_t *http, const char *name) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
359 extern http_status_t cupsGetPPD3(http_t *http, const char *name, time_t *modtime, char *buffer, size_t bufsize) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
360 extern char *cupsGetServerPPD(http_t *http, const char *name) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
361 extern int cupsMarkOptions(ppd_file_t *ppd, int num_options, cups_option_t *options) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
362
363 extern void ppdClose(ppd_file_t *ppd) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
364 extern int ppdCollect(ppd_file_t *ppd, ppd_section_t section,
365 ppd_choice_t ***choices) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
366 extern int ppdConflicts(ppd_file_t *ppd) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
367 extern int ppdEmit(ppd_file_t *ppd, FILE *fp,
368 ppd_section_t section) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
369 extern int ppdEmitFd(ppd_file_t *ppd, int fd,
370 ppd_section_t section) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
371 extern int ppdEmitJCL(ppd_file_t *ppd, FILE *fp, int job_id,
372 const char *user, const char *title)
373 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
374 extern ppd_choice_t *ppdFindChoice(ppd_option_t *o, const char *option)
375 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
376 extern ppd_choice_t *ppdFindMarkedChoice(ppd_file_t *ppd,
377 const char *keyword)
378 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
379 extern ppd_option_t *ppdFindOption(ppd_file_t *ppd, const char *keyword)
380 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
381 extern int ppdIsMarked(ppd_file_t *ppd, const char *keyword,
382 const char *option) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
383 extern void ppdMarkDefaults(ppd_file_t *ppd) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
384 extern int ppdMarkOption(ppd_file_t *ppd, const char *keyword,
385 const char *option) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
386 extern ppd_file_t *ppdOpen(FILE *fp) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
387 extern ppd_file_t *ppdOpenFd(int fd) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
388 extern ppd_file_t *ppdOpenFile(const char *filename) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
389 extern float ppdPageLength(ppd_file_t *ppd, const char *name)
390 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
391 extern ppd_size_t *ppdPageSize(ppd_file_t *ppd, const char *name)
392 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
393 extern float ppdPageWidth(ppd_file_t *ppd, const char *name)
394 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
395
396 /**** New in CUPS 1.1.19 ****/
397 extern const char *ppdErrorString(ppd_status_t status) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
398 extern ppd_attr_t *ppdFindAttr(ppd_file_t *ppd, const char *name,
399 const char *spec) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
400 extern ppd_attr_t *ppdFindNextAttr(ppd_file_t *ppd, const char *name,
401 const char *spec) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
402 extern ppd_status_t ppdLastError(int *line) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
403
404 /**** New in CUPS 1.1.20 ****/
405 extern void ppdSetConformance(ppd_conform_t c) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
406
407 /**** New in CUPS 1.2 ****/
408 extern int cupsRasterInterpretPPD(cups_page_header2_t *h,
409 ppd_file_t *ppd,
410 int num_options,
411 cups_option_t *options,
412 cups_interpret_cb_t func) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
413 extern int ppdCollect2(ppd_file_t *ppd, ppd_section_t section,
414 float min_order, ppd_choice_t ***choices)
415 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
416 extern int ppdEmitAfterOrder(ppd_file_t *ppd, FILE *fp,
417 ppd_section_t section, int limit,
418 float min_order) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
419 extern int ppdEmitJCLEnd(ppd_file_t *ppd, FILE *fp)
420 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
421 extern char *ppdEmitString(ppd_file_t *ppd, ppd_section_t section,
422 float min_order) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
423 extern ppd_coption_t *ppdFindCustomOption(ppd_file_t *ppd,
424 const char *keyword)
425 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
426 extern ppd_cparam_t *ppdFindCustomParam(ppd_coption_t *opt,
427 const char *name) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
428 extern ppd_cparam_t *ppdFirstCustomParam(ppd_coption_t *opt)
429 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
430 extern ppd_option_t *ppdFirstOption(ppd_file_t *ppd) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
431 extern ppd_cparam_t *ppdNextCustomParam(ppd_coption_t *opt) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
432 extern ppd_option_t *ppdNextOption(ppd_file_t *ppd) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
433 extern int ppdLocalize(ppd_file_t *ppd) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
434 extern ppd_file_t *ppdOpen2(cups_file_t *fp) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
435
436 /**** New in CUPS 1.3/macOS 10.5 ****/
437 extern const char *ppdLocalizeIPPReason(ppd_file_t *ppd,
438 const char *reason,
439 const char *scheme,
440 char *buffer,
441 size_t bufsize) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
442
443 /**** New in CUPS 1.4/macOS 10.6 ****/
444 extern int cupsGetConflicts(ppd_file_t *ppd, const char *option,
445 const char *choice,
446 cups_option_t **options)
447 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
448 extern int cupsResolveConflicts(ppd_file_t *ppd,
449 const char *option,
450 const char *choice,
451 int *num_options,
452 cups_option_t **options)
453 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
454 extern int ppdInstallableConflict(ppd_file_t *ppd,
455 const char *option,
456 const char *choice)
457 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
458 extern ppd_attr_t *ppdLocalizeAttr(ppd_file_t *ppd, const char *keyword,
459 const char *spec) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
460 extern const char *ppdLocalizeMarkerName(ppd_file_t *ppd,
461 const char *name)
462 _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
463 extern int ppdPageSizeLimits(ppd_file_t *ppd,
464 ppd_size_t *minimum,
465 ppd_size_t *maximum) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
466
467
468 /*
469 * C++ magic...
470 */
471
472 # ifdef __cplusplus
473 }
474 # endif /* __cplusplus */
475 #endif /* !_CUPS_PPD_H_ */