]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/cups.h
Load cups into easysw/current.
[thirdparty/cups.git] / cups / cups.h
1 /*
2 * "$Id: cups.h 5099 2006-02-13 02:46:10Z mike $"
3 *
4 * API definitions for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 1997-2006 by Easy Software Products.
7 *
8 * These coded instructions, statements, and computer programs are the
9 * property of Easy Software Products and are protected by Federal
10 * copyright law. Distribution and use rights are outlined in the file
11 * "LICENSE.txt" which should have been included with this file. If this
12 * file is missing or damaged please contact Easy Software Products
13 * at:
14 *
15 * Attn: CUPS Licensing Information
16 * Easy Software Products
17 * 44141 Airport View Drive, Suite 204
18 * Hollywood, Maryland 20636 USA
19 *
20 * Voice: (301) 373-9600
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
23 *
24 * This file is subject to the Apple OS-Developed Software exception.
25 */
26
27 #ifndef _CUPS_CUPS_H_
28 # define _CUPS_CUPS_H_
29
30 /*
31 * Include necessary headers...
32 */
33
34 # include "ipp.h"
35 # include "ppd.h"
36 # include "language.h"
37
38
39 /*
40 * With GCC 3.0 and higher, we can mark old APIs "deprecated" so you get
41 * a warning at compile-time.
42 */
43
44 # if defined(__GNUC__) && __GNUC__ > 2
45 # define _CUPS_DEPRECATED __attribute__ ((__deprecated__))
46 # else
47 # define _CUPS_DEPRECATED
48 # endif /* __GNUC__ && __GNUC__ > 2 */
49
50
51 /*
52 * C++ magic...
53 */
54
55 # ifdef __cplusplus
56 extern "C" {
57 # endif /* __cplusplus */
58
59
60 /*
61 * Constants...
62 */
63
64 # define CUPS_VERSION 1.0190
65 # define CUPS_VERSION_MAJOR 1
66 # define CUPS_VERSION_MINOR 2
67 # define CUPS_VERSION_PATCH -10
68 # define CUPS_DATE_ANY -1
69
70
71 /*
72 * Types and structures...
73 */
74
75 typedef unsigned cups_ptype_t; /**** Printer Type/Capability Bits ****/
76 enum cups_ptype_e /* Not a typedef'd enum so we can OR */
77 {
78 CUPS_PRINTER_LOCAL = 0x0000, /* Local printer or class */
79 CUPS_PRINTER_CLASS = 0x0001, /* Printer class */
80 CUPS_PRINTER_REMOTE = 0x0002, /* Remote printer or class */
81 CUPS_PRINTER_BW = 0x0004, /* Can do B&W printing */
82 CUPS_PRINTER_COLOR = 0x0008, /* Can do color printing */
83 CUPS_PRINTER_DUPLEX = 0x0010, /* Can do duplexing */
84 CUPS_PRINTER_STAPLE = 0x0020, /* Can staple output */
85 CUPS_PRINTER_COPIES = 0x0040, /* Can do copies */
86 CUPS_PRINTER_COLLATE = 0x0080, /* Can collage copies */
87 CUPS_PRINTER_PUNCH = 0x0100, /* Can punch output */
88 CUPS_PRINTER_COVER = 0x0200, /* Can cover output */
89 CUPS_PRINTER_BIND = 0x0400, /* Can bind output */
90 CUPS_PRINTER_SORT = 0x0800, /* Can sort output */
91 CUPS_PRINTER_SMALL = 0x1000, /* Can do Letter/Legal/A4 */
92 CUPS_PRINTER_MEDIUM = 0x2000, /* Can do Tabloid/B/C/A3/A2 */
93 CUPS_PRINTER_LARGE = 0x4000, /* Can do D/E/A1/A0 */
94 CUPS_PRINTER_VARIABLE = 0x8000, /* Can do variable sizes */
95 CUPS_PRINTER_IMPLICIT = 0x10000, /* Implicit class */
96 CUPS_PRINTER_DEFAULT = 0x20000, /* Default printer on network */
97 CUPS_PRINTER_FAX = 0x40000, /* Fax queue */
98 CUPS_PRINTER_REJECTING = 0x80000, /* Printer is rejecting jobs */
99 CUPS_PRINTER_DELETE = 0x100000, /* Delete printer @since CUPS 1.2@ */
100 CUPS_PRINTER_NOT_SHARED = 0x200000, /* Printer is not shared @since CUPS 1.2@ */
101 CUPS_PRINTER_AUTHENTICATED = 0x400000,/* Printer requires authentication @since CUPS 1.2@ */
102 CUPS_PRINTER_OPTIONS = 0x66fffc /* ~(CLASS | REMOTE | IMPLICIT) */
103 };
104
105 typedef const char *(*cups_password_cb_t)(const char *);
106
107 typedef struct cups_option_s /**** Printer Options ****/
108 {
109 char *name; /* Name of option */
110 char *value; /* Value of option */
111 } cups_option_t;
112
113 typedef struct cups_dest_s /**** Destination ****/
114 {
115 char *name, /* Printer or class name */
116 *instance; /* Local instance name or NULL */
117 int is_default; /* Is this printer the default? */
118 int num_options; /* Number of options */
119 cups_option_t *options; /* Options */
120 } cups_dest_t;
121
122 typedef struct cups_job_s /**** Job ****/
123 {
124 int id; /* The job ID */
125 char *dest, /* Printer or class name */
126 *title, /* Title/job name */
127 *user, /* User the submitted the job */
128 *format; /* Document format */
129 ipp_jstate_t state; /* Job state */
130 int size, /* Size in kilobytes */
131 priority; /* Priority (1-100) */
132 time_t completed_time, /* Time the job was completed */
133 creation_time, /* Time the job was created */
134 processing_time; /* Time the job was processed */
135 } cups_job_t;
136
137
138 /*
139 * Functions...
140 */
141
142 extern int cupsCancelJob(const char *printer, int job);
143 #define cupsDoRequest(http,request,resource) cupsDoFileRequest((http),(request),(resource),NULL)
144 extern ipp_t *cupsDoFileRequest(http_t *http, ipp_t *request,
145 const char *resource, const char *filename);
146 extern http_encryption_t cupsEncryption(void);
147 extern void cupsFreeJobs(int num_jobs, cups_job_t *jobs);
148 extern int cupsGetClasses(char ***classes) _CUPS_DEPRECATED;
149 extern const char *cupsGetDefault(void);
150 extern int cupsGetJobs(cups_job_t **jobs, const char *dest,
151 int myjobs, int completed);
152 extern const char *cupsGetPPD(const char *printer);
153 extern int cupsGetPrinters(char ***printers) _CUPS_DEPRECATED;
154 extern ipp_status_t cupsLastError(void);
155 extern int cupsPrintFile(const char *printer, const char *filename,
156 const char *title, int num_options,
157 cups_option_t *options);
158 extern int cupsPrintFiles(const char *printer, int num_files,
159 const char **files, const char *title,
160 int num_options, cups_option_t *options);
161 extern char *cupsTempFile(char *filename, int len) _CUPS_DEPRECATED;
162 extern int cupsTempFd(char *filename, int len);
163
164 extern int cupsAddDest(const char *name, const char *instance,
165 int num_dests, cups_dest_t **dests);
166 extern void cupsFreeDests(int num_dests, cups_dest_t *dests);
167 extern cups_dest_t *cupsGetDest(const char *name, const char *instance,
168 int num_dests, cups_dest_t *dests);
169 extern int cupsGetDests(cups_dest_t **dests);
170 extern void cupsSetDests(int num_dests, cups_dest_t *dests);
171
172 extern int cupsAddOption(const char *name, const char *value,
173 int num_options, cups_option_t **options);
174 extern void cupsEncodeOptions(ipp_t *ipp, int num_options,
175 cups_option_t *options);
176 extern void cupsFreeOptions(int num_options, cups_option_t *options);
177 extern const char *cupsGetOption(const char *name, int num_options,
178 cups_option_t *options);
179 extern int cupsParseOptions(const char *arg, int num_options,
180 cups_option_t **options);
181 extern int cupsMarkOptions(ppd_file_t *ppd, int num_options,
182 cups_option_t *options);
183
184 extern const char *cupsGetPassword(const char *prompt);
185 extern const char *cupsServer(void);
186 extern void cupsSetEncryption(http_encryption_t e);
187 extern void cupsSetPasswordCB(cups_password_cb_t cb);
188 extern void cupsSetServer(const char *server);
189 extern void cupsSetUser(const char *user);
190 extern const char *cupsUser(void);
191
192 /**** New in CUPS 1.1.20 ****/
193 extern int cupsDoAuthentication(http_t *http, const char *method,
194 const char *resource);
195 extern http_status_t cupsGetFile(http_t *http, const char *resource,
196 const char *filename);
197 extern http_status_t cupsGetFd(http_t *http, const char *resource, int fd);
198 extern http_status_t cupsPutFile(http_t *http, const char *resource,
199 const char *filename);
200 extern http_status_t cupsPutFd(http_t *http, const char *resource, int fd);
201
202 /**** New in CUPS 1.1.21 ****/
203 extern const char *cupsGetDefault2(http_t *http);
204 extern int cupsGetDests2(http_t *http, cups_dest_t **dests);
205 extern int cupsGetJobs2(http_t *http, cups_job_t **jobs,
206 const char *dest, int myjobs,
207 int completed);
208 extern const char *cupsGetPPD2(http_t *http, const char *printer);
209 extern int cupsPrintFile2(http_t *http, const char *printer,
210 const char *filename,
211 const char *title, int num_options,
212 cups_option_t *options);
213 extern int cupsPrintFiles2(http_t *http, const char *printer,
214 int num_files, const char **files,
215 const char *title, int num_options,
216 cups_option_t *options);
217 extern int cupsSetDests2(http_t *http, int num_dests,
218 cups_dest_t *dests);
219
220 /**** New in CUPS 1.2 ****/
221 extern int cupsBackChannelRead(char *buffer, int bytes, double timeout);
222 extern int cupsBackChannelWrite(const char *buffer, int bytes,
223 double timeout);
224 extern void cupsEncodeOptions2(ipp_t *ipp, int num_options,
225 cups_option_t *options,
226 ipp_tag_t group_tag);
227 extern const char *cupsLastErrorString(void);
228 extern char *cupsNotifySubject(cups_lang_t *lang, ipp_t *event);
229 extern char *cupsNotifyText(cups_lang_t *lang, ipp_t *event);
230 extern cups_file_t *cupsTempFile2(char *filename, int len);
231
232
233 # ifdef __cplusplus
234 }
235 # endif /* __cplusplus */
236
237 #endif /* !_CUPS_CUPS_H_ */
238
239 /*
240 * End of "$Id: cups.h 5099 2006-02-13 02:46:10Z mike $".
241 */