]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/classes.h
Load cups into easysw/current.
[thirdparty/cups.git] / scheduler / classes.h
CommitLineData
ef416fc2 1/*
f7faf1f5 2 * "$Id: classes.h 4719 2005-09-28 21:12:44Z mike $"
ef416fc2 3 *
4 * Printer class definitions for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 1997-2005 by Easy Software Products, all rights reserved.
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
25
26/*
27 * Prototypes...
28 */
29
30extern cupsd_printer_t *cupsdAddClass(const char *name);
31extern void cupsdAddPrinterToClass(cupsd_printer_t *c,
32 cupsd_printer_t *p);
33extern void cupsdDeletePrinterFromClass(cupsd_printer_t *c,
34 cupsd_printer_t *p);
35extern void cupsdDeletePrinterFromClasses(cupsd_printer_t *p);
36extern void cupsdDeleteAllClasses(void);
37extern cupsd_printer_t *cupsdFindAvailablePrinter(const char *name);
38extern cupsd_printer_t *cupsdFindClass(const char *name);
39extern void cupsdLoadAllClasses(void);
40extern void cupsdSaveAllClasses(void);
41extern void cupsdUpdateImplicitClasses(void);
42
43
44/*
f7faf1f5 45 * End of "$Id: classes.h 4719 2005-09-28 21:12:44Z mike $".
ef416fc2 46 */