]> 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/*
bc44d920 2 * "$Id: classes.h 6649 2007-07-11 21:46:42Z mike $"
ef416fc2 3 *
4 * Printer class definitions for the Common UNIX Printing System (CUPS).
5 *
bc44d920 6 * Copyright 2007 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);
24extern void cupsdDeletePrinterFromClass(cupsd_printer_t *c,
25 cupsd_printer_t *p);
26extern void cupsdDeletePrinterFromClasses(cupsd_printer_t *p);
27extern void cupsdDeleteAllClasses(void);
28extern cupsd_printer_t *cupsdFindAvailablePrinter(const char *name);
29extern cupsd_printer_t *cupsdFindClass(const char *name);
30extern void cupsdLoadAllClasses(void);
31extern void cupsdSaveAllClasses(void);
32extern void cupsdUpdateImplicitClasses(void);
33
34
35/*
bc44d920 36 * End of "$Id: classes.h 6649 2007-07-11 21:46:42Z mike $".
ef416fc2 37 */