]> git.ipfire.org Git - thirdparty/cups.git/blob - scheduler/classes.h
Update svn:keyword properties.
[thirdparty/cups.git] / scheduler / classes.h
1 /*
2 * "$Id$"
3 *
4 * Printer class definitions for the CUPS scheduler.
5 *
6 * Copyright 2007-2011 by Apple Inc.
7 * Copyright 1997-2005 by Easy Software Products, all rights reserved.
8 *
9 * These coded instructions, statements, and computer programs are the
10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
14 */
15
16
17 /*
18 * Prototypes...
19 */
20
21 extern cupsd_printer_t *cupsdAddClass(const char *name);
22 extern void cupsdAddPrinterToClass(cupsd_printer_t *c,
23 cupsd_printer_t *p);
24 extern int cupsdDeletePrinterFromClass(cupsd_printer_t *c,
25 cupsd_printer_t *p);
26 extern int cupsdDeletePrinterFromClasses(cupsd_printer_t *p);
27 extern cupsd_printer_t *cupsdFindAvailablePrinter(const char *name);
28 extern cupsd_printer_t *cupsdFindClass(const char *name);
29 extern void cupsdLoadAllClasses(void);
30 extern void cupsdSaveAllClasses(void);
31
32
33 /*
34 * End of "$Id$".
35 */