summaryrefslogtreecommitdiff
path: root/cups/ppd.h
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2015-12-09 16:56:00 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2015-12-09 16:56:00 +0000
commitf787e1e3ff11339269bdc11e253af91e5961e013 (patch)
treeaa88a0248e61c56dc84696b544a455005cfddfff /cups/ppd.h
parent7f2dc952e01cc1b063b2b46b4a6966659e1dc092 (diff)
downloadcups-f787e1e3ff11339269bdc11e253af91e5961e013.tar.gz
Do some code reorganization so that all of the PPD code is separate from the rest.
Note: cupsGetPPD* and friends are now in cups/ppd.h now - should not be an issue but was necessary to leave a clean break for future code. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@13007 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'cups/ppd.h')
-rw-r--r--cups/ppd.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/cups/ppd.h b/cups/ppd.h
index 56d2b0eae..34d1b4f73 100644
--- a/cups/ppd.h
+++ b/cups/ppd.h
@@ -7,7 +7,7 @@
* -D_PPD_DEPRECATED="" TO YOUR COMPILE OPTIONS. THIS HEADER AND THESE
* FUNCTIONS WILL BE REMOVED IN A FUTURE RELEASE OF CUPS.
*
- * Copyright 2007-2013 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
*
* These coded instructions, statements, and computer programs are the
@@ -362,8 +362,12 @@ typedef struct ppd_file_s /**** PPD File ****/
* Prototypes...
*/
-extern int cupsMarkOptions(ppd_file_t *ppd, int num_options,
- cups_option_t *options) _PPD_DEPRECATED;
+extern const char *cupsGetPPD(const char *name) _PPD_DEPRECATED;
+extern const char *cupsGetPPD2(http_t *http, const char *name) _PPD_DEPRECATED;
+extern http_status_t cupsGetPPD3(http_t *http, const char *name, time_t *modtime, char *buffer, size_t bufsize) _PPD_DEPRECATED;
+extern char *cupsGetServerPPD(http_t *http, const char *name) _PPD_DEPRECATED;
+extern int cupsMarkOptions(ppd_file_t *ppd, int num_options, cups_option_t *options) _PPD_DEPRECATED;
+
extern void ppdClose(ppd_file_t *ppd) _PPD_DEPRECATED;
extern int ppdCollect(ppd_file_t *ppd, ppd_section_t section,
ppd_choice_t ***choices) _PPD_DEPRECATED;