]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/classes.h
Update svn:keyword properties.
[thirdparty/cups.git] / scheduler / classes.h
index 7667742e7c070c8f516fbe61b05d36a27c00c13c..b24b7de117cac3df76a8d5a6ce233b8bdc5aa72d 100644 (file)
@@ -1,25 +1,16 @@
 /*
  * "$Id$"
  *
- *   Printer class definitions for the Common UNIX Printing System (CUPS).
+ *   Printer class definitions for the CUPS scheduler.
  *
+ *   Copyright 2007-2011 by Apple Inc.
  *   Copyright 1997-2005 by Easy Software Products, all rights reserved.
  *
  *   These coded instructions, statements, and computer programs are the
- *   property of Easy Software Products and are protected by Federal
- *   copyright law.  Distribution and use rights are outlined in the file
- *   "LICENSE.txt" which should have been included with this file.  If this
- *   file is missing or damaged please contact Easy Software Products
- *   at:
- *
- *       Attn: CUPS Licensing Information
- *       Easy Software Products
- *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636 USA
- *
- *       Voice: (301) 373-9600
- *       EMail: cups-info@cups.org
- *         WWW: http://www.cups.org
+ *   property of Apple Inc. and are protected by Federal copyright
+ *   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+ *   which should have been included with this file.  If this file is
+ *   file is missing or damaged, see the license at "http://www.cups.org/".
  */
 
 
 extern cupsd_printer_t *cupsdAddClass(const char *name);
 extern void            cupsdAddPrinterToClass(cupsd_printer_t *c,
                                               cupsd_printer_t *p);
-extern void            cupsdDeletePrinterFromClass(cupsd_printer_t *c,
+extern int             cupsdDeletePrinterFromClass(cupsd_printer_t *c,
                                                    cupsd_printer_t *p);
-extern void            cupsdDeletePrinterFromClasses(cupsd_printer_t *p);
-extern void            cupsdDeleteAllClasses(void);
+extern int             cupsdDeletePrinterFromClasses(cupsd_printer_t *p);
 extern cupsd_printer_t *cupsdFindAvailablePrinter(const char *name);
 extern cupsd_printer_t *cupsdFindClass(const char *name);
 extern void            cupsdLoadAllClasses(void);
 extern void            cupsdSaveAllClasses(void);
-extern void            cupsdUpdateImplicitClasses(void);
 
 
 /*