]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/cups.h
Load cups into easysw/current.
[thirdparty/cups.git] / cups / cups.h
CommitLineData
ef416fc2 1/*
b94498cf 2 * "$Id: cups.h 6506 2007-05-03 18:12:35Z mike $"
ef416fc2 3 *
4 * API definitions for the Common UNIX Printing System (CUPS).
5 *
b86bc4cf 6 * Copyright 1997-2007 by Easy Software Products.
ef416fc2 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
b86bc4cf 34# include <sys/types.h>
35# if defined(WIN32) && !defined(__CUPS_SSIZE_T_DEFINED)
36# define __CUPS_SSIZE_T_DEFINED
37/* Windows does not support the ssize_t type, so map it to off_t... */
38typedef off_t ssize_t; /* @private@ */
39# endif /* WIN32 && !__CUPS_SSIZE_T_DEFINED */
40
ef416fc2 41# include "ipp.h"
42# include "ppd.h"
fa73b229 43# include "language.h"
44
ef416fc2 45
46/*
47 * With GCC 3.0 and higher, we can mark old APIs "deprecated" so you get
fa73b229 48 * a warning at compile-time.
ef416fc2 49 */
50
51# if defined(__GNUC__) && __GNUC__ > 2
52# define _CUPS_DEPRECATED __attribute__ ((__deprecated__))
53# else
54# define _CUPS_DEPRECATED
55# endif /* __GNUC__ && __GNUC__ > 2 */
56
57
58/*
59 * C++ magic...
60 */
61
62# ifdef __cplusplus
63extern "C" {
64# endif /* __cplusplus */
65
66
67/*
68 * Constants...
69 */
70
f7deaa1a 71# define CUPS_VERSION 1.0300
ef416fc2 72# define CUPS_VERSION_MAJOR 1
f7deaa1a 73# define CUPS_VERSION_MINOR 3
74# define CUPS_VERSION_PATCH 0
ef416fc2 75# define CUPS_DATE_ANY -1
76
77
78/*
79 * Types and structures...
80 */
81
82typedef unsigned cups_ptype_t; /**** Printer Type/Capability Bits ****/
83enum cups_ptype_e /* Not a typedef'd enum so we can OR */
84{
85 CUPS_PRINTER_LOCAL = 0x0000, /* Local printer or class */
86 CUPS_PRINTER_CLASS = 0x0001, /* Printer class */
87 CUPS_PRINTER_REMOTE = 0x0002, /* Remote printer or class */
88 CUPS_PRINTER_BW = 0x0004, /* Can do B&W printing */
89 CUPS_PRINTER_COLOR = 0x0008, /* Can do color printing */
90 CUPS_PRINTER_DUPLEX = 0x0010, /* Can do duplexing */
91 CUPS_PRINTER_STAPLE = 0x0020, /* Can staple output */
92 CUPS_PRINTER_COPIES = 0x0040, /* Can do copies */
93 CUPS_PRINTER_COLLATE = 0x0080, /* Can collage copies */
94 CUPS_PRINTER_PUNCH = 0x0100, /* Can punch output */
95 CUPS_PRINTER_COVER = 0x0200, /* Can cover output */
96 CUPS_PRINTER_BIND = 0x0400, /* Can bind output */
97 CUPS_PRINTER_SORT = 0x0800, /* Can sort output */
98 CUPS_PRINTER_SMALL = 0x1000, /* Can do Letter/Legal/A4 */
99 CUPS_PRINTER_MEDIUM = 0x2000, /* Can do Tabloid/B/C/A3/A2 */
100 CUPS_PRINTER_LARGE = 0x4000, /* Can do D/E/A1/A0 */
101 CUPS_PRINTER_VARIABLE = 0x8000, /* Can do variable sizes */
102 CUPS_PRINTER_IMPLICIT = 0x10000, /* Implicit class */
103 CUPS_PRINTER_DEFAULT = 0x20000, /* Default printer on network */
104 CUPS_PRINTER_FAX = 0x40000, /* Fax queue */
105 CUPS_PRINTER_REJECTING = 0x80000, /* Printer is rejecting jobs */
106 CUPS_PRINTER_DELETE = 0x100000, /* Delete printer @since CUPS 1.2@ */
107 CUPS_PRINTER_NOT_SHARED = 0x200000, /* Printer is not shared @since CUPS 1.2@ */
108 CUPS_PRINTER_AUTHENTICATED = 0x400000,/* Printer requires authentication @since CUPS 1.2@ */
b423cd4c 109 CUPS_PRINTER_COMMANDS = 0x800000, /* Printer supports maintenance commands @since CUPS 1.2@ */
110 CUPS_PRINTER_OPTIONS = 0xe6fffc /* ~(CLASS | REMOTE | IMPLICIT) */
ef416fc2 111};
112
113typedef const char *(*cups_password_cb_t)(const char *);
ecdc0628 114 /**** Password callback ****/
ef416fc2 115
116typedef struct cups_option_s /**** Printer Options ****/
117{
118 char *name; /* Name of option */
119 char *value; /* Value of option */
120} cups_option_t;
121
122typedef struct cups_dest_s /**** Destination ****/
123{
124 char *name, /* Printer or class name */
125 *instance; /* Local instance name or NULL */
126 int is_default; /* Is this printer the default? */
127 int num_options; /* Number of options */
128 cups_option_t *options; /* Options */
129} cups_dest_t;
130
131typedef struct cups_job_s /**** Job ****/
132{
133 int id; /* The job ID */
ecdc0628 134 char *dest; /* Printer or class name */
135 char *title; /* Title/job name */
136 char *user; /* User the submitted the job */
137 char *format; /* Document format */
ef416fc2 138 ipp_jstate_t state; /* Job state */
ecdc0628 139 int size; /* Size in kilobytes */
140 int priority; /* Priority (1-100) */
141 time_t completed_time; /* Time the job was completed */
142 time_t creation_time; /* Time the job was created */
143 time_t processing_time; /* Time the job was processed */
ef416fc2 144} cups_job_t;
145
146
147/*
148 * Functions...
149 */
150
151extern int cupsCancelJob(const char *printer, int job);
ef416fc2 152extern ipp_t *cupsDoFileRequest(http_t *http, ipp_t *request,
ecdc0628 153 const char *resource,
154 const char *filename);
155extern ipp_t *cupsDoRequest(http_t *http, ipp_t *request,
156 const char *resource);
ef416fc2 157extern http_encryption_t cupsEncryption(void);
158extern void cupsFreeJobs(int num_jobs, cups_job_t *jobs);
159extern int cupsGetClasses(char ***classes) _CUPS_DEPRECATED;
160extern const char *cupsGetDefault(void);
161extern int cupsGetJobs(cups_job_t **jobs, const char *dest,
162 int myjobs, int completed);
163extern const char *cupsGetPPD(const char *printer);
164extern int cupsGetPrinters(char ***printers) _CUPS_DEPRECATED;
165extern ipp_status_t cupsLastError(void);
166extern int cupsPrintFile(const char *printer, const char *filename,
167 const char *title, int num_options,
168 cups_option_t *options);
169extern int cupsPrintFiles(const char *printer, int num_files,
170 const char **files, const char *title,
171 int num_options, cups_option_t *options);
172extern char *cupsTempFile(char *filename, int len) _CUPS_DEPRECATED;
173extern int cupsTempFd(char *filename, int len);
174
175extern int cupsAddDest(const char *name, const char *instance,
176 int num_dests, cups_dest_t **dests);
177extern void cupsFreeDests(int num_dests, cups_dest_t *dests);
178extern cups_dest_t *cupsGetDest(const char *name, const char *instance,
179 int num_dests, cups_dest_t *dests);
180extern int cupsGetDests(cups_dest_t **dests);
181extern void cupsSetDests(int num_dests, cups_dest_t *dests);
182
183extern int cupsAddOption(const char *name, const char *value,
184 int num_options, cups_option_t **options);
185extern void cupsEncodeOptions(ipp_t *ipp, int num_options,
186 cups_option_t *options);
187extern void cupsFreeOptions(int num_options, cups_option_t *options);
188extern const char *cupsGetOption(const char *name, int num_options,
189 cups_option_t *options);
ef416fc2 190extern int cupsMarkOptions(ppd_file_t *ppd, int num_options,
191 cups_option_t *options);
b423cd4c 192extern int cupsParseOptions(const char *arg, int num_options,
193 cups_option_t **options);
ef416fc2 194
195extern const char *cupsGetPassword(const char *prompt);
196extern const char *cupsServer(void);
197extern void cupsSetEncryption(http_encryption_t e);
198extern void cupsSetPasswordCB(cups_password_cb_t cb);
199extern void cupsSetServer(const char *server);
200extern void cupsSetUser(const char *user);
201extern const char *cupsUser(void);
202
203/**** New in CUPS 1.1.20 ****/
204extern int cupsDoAuthentication(http_t *http, const char *method,
205 const char *resource);
206extern http_status_t cupsGetFile(http_t *http, const char *resource,
207 const char *filename);
208extern http_status_t cupsGetFd(http_t *http, const char *resource, int fd);
209extern http_status_t cupsPutFile(http_t *http, const char *resource,
210 const char *filename);
211extern http_status_t cupsPutFd(http_t *http, const char *resource, int fd);
212
213/**** New in CUPS 1.1.21 ****/
214extern const char *cupsGetDefault2(http_t *http);
215extern int cupsGetDests2(http_t *http, cups_dest_t **dests);
216extern int cupsGetJobs2(http_t *http, cups_job_t **jobs,
217 const char *dest, int myjobs,
218 int completed);
219extern const char *cupsGetPPD2(http_t *http, const char *printer);
220extern int cupsPrintFile2(http_t *http, const char *printer,
221 const char *filename,
222 const char *title, int num_options,
223 cups_option_t *options);
224extern int cupsPrintFiles2(http_t *http, const char *printer,
225 int num_files, const char **files,
226 const char *title, int num_options,
227 cups_option_t *options);
228extern int cupsSetDests2(http_t *http, int num_dests,
229 cups_dest_t *dests);
230
231/**** New in CUPS 1.2 ****/
ecdc0628 232extern ssize_t cupsBackChannelRead(char *buffer, size_t bytes,
233 double timeout);
234extern ssize_t cupsBackChannelWrite(const char *buffer, size_t bytes,
ef416fc2 235 double timeout);
236extern void cupsEncodeOptions2(ipp_t *ipp, int num_options,
237 cups_option_t *options,
238 ipp_tag_t group_tag);
239extern const char *cupsLastErrorString(void);
fa73b229 240extern char *cupsNotifySubject(cups_lang_t *lang, ipp_t *event);
241extern char *cupsNotifyText(cups_lang_t *lang, ipp_t *event);
b423cd4c 242extern int cupsRemoveOption(const char *name, int num_options,
243 cups_option_t **options);
ef416fc2 244extern cups_file_t *cupsTempFile2(char *filename, int len);
245
f7deaa1a 246/**** New in CUPS 1.3 ****/
b94498cf 247extern ipp_t *cupsDoIORequest(http_t *http, ipp_t *request,
248 const char *resource, int infile,
249 int outfile);
250extern char *cupsGetServerPPD(http_t *http, const char *name);
f7deaa1a 251extern int cupsRemoveDest(const char *name,
252 const char *instance,
253 int num_dests, cups_dest_t **dests);
254extern void cupsSetDefaultDest(const char *name,
255 const char *instance,
256 int num_dests,
257 cups_dest_t *dests);
258
ef416fc2 259
260# ifdef __cplusplus
261}
262# endif /* __cplusplus */
263
264#endif /* !_CUPS_CUPS_H_ */
265
266/*
b94498cf 267 * End of "$Id: cups.h 6506 2007-05-03 18:12:35Z mike $".
ef416fc2 268 */