]> git.ipfire.org Git - thirdparty/cups.git/blob - scheduler/classes.h
c20e304ab1be1769bc42e92382146e37ffb9f451
[thirdparty/cups.git] / scheduler / classes.h
1 /*
2 * "$Id$"
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
30 extern printer_t *AddClass(const char *name);
31 extern void AddPrinterToClass(printer_t *c, printer_t *p);
32 extern void DeletePrinterFromClass(printer_t *c, printer_t *p);
33 extern void DeletePrinterFromClasses(printer_t *p);
34 extern void DeleteAllClasses(void);
35 extern printer_t *FindAvailablePrinter(const char *name);
36 extern printer_t *FindClass(const char *name);
37 extern void LoadAllClasses(void);
38 extern void SaveAllClasses(void);
39 extern void UpdateImplicitClasses(void);
40
41
42 /*
43 * End of "$Id$".
44 */