]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/classes.h
Import CUPS v1.7.1
[thirdparty/cups.git] / scheduler / classes.h
CommitLineData
ef416fc2 1/*
61515785 2 * "$Id: classes.h 10996 2013-05-29 11:51:34Z msweet $"
ef416fc2 3 *
10d09e33 4 * Printer class definitions for the CUPS scheduler.
ef416fc2 5 *
a2326b5b 6 * Copyright 2007-2011 by Apple Inc.
ef416fc2 7 * Copyright 1997-2005 by Easy Software Products, all rights reserved.
8 *
9 * These coded instructions, statements, and computer programs are the
bc44d920 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/".
ef416fc2 14 */
15
16
17/*
18 * Prototypes...
19 */
20
21extern cupsd_printer_t *cupsdAddClass(const char *name);
22extern void cupsdAddPrinterToClass(cupsd_printer_t *c,
23 cupsd_printer_t *p);
f8b3a85b 24extern int cupsdDeletePrinterFromClass(cupsd_printer_t *c,
ef416fc2 25 cupsd_printer_t *p);
f8b3a85b 26extern int cupsdDeletePrinterFromClasses(cupsd_printer_t *p);
ef416fc2 27extern cupsd_printer_t *cupsdFindAvailablePrinter(const char *name);
28extern cupsd_printer_t *cupsdFindClass(const char *name);
29extern void cupsdLoadAllClasses(void);
30extern void cupsdSaveAllClasses(void);
ef416fc2 31
32
33/*
61515785 34 * End of "$Id: classes.h 10996 2013-05-29 11:51:34Z msweet $".
ef416fc2 35 */