]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/classes.h
Broke out listener code from client code.
[thirdparty/cups.git] / scheduler / classes.h
CommitLineData
a129ddbd 1/*
cbbfcc63 2 * "$Id: classes.h,v 1.6 1999/05/13 20:41:10 mike Exp $"
a129ddbd 3 *
fd8b1cf8 4 * Printer class definitions for the Common UNIX Printing System (CUPS).
a129ddbd 5 *
a9de544f 6 * Copyright 1997-1999 by Easy Software Products, all rights reserved.
a129ddbd 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 * 44145 Airport View Drive, Suite 204
18 * Hollywood, Maryland 20636-3111 USA
19 *
20 * Voice: (301) 373-9603
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
a129ddbd 23 */
24
a9de544f 25
a129ddbd 26/*
a9de544f 27 * Prototypes...
28 */
29
cbbfcc63 30extern printer_t *AddClass(char *name);
31extern void AddPrinterToClass(printer_t *c, printer_t *p);
32extern void DeletePrinterFromClass(printer_t *c, printer_t *p);
33extern void DeletePrinterFromClasses(printer_t *p);
a9de544f 34extern void DeleteAllClasses(void);
a9de544f 35extern printer_t *FindAvailablePrinter(char *name);
cbbfcc63 36extern printer_t *FindClass(char *name);
a9de544f 37extern void LoadAllClasses(void);
38extern void SaveAllClasses(void);
39
a129ddbd 40
41/*
cbbfcc63 42 * End of "$Id: classes.h,v 1.6 1999/05/13 20:41:10 mike Exp $".
a129ddbd 43 */