Revert manifest to default one
[external/cups.git] / scheduler / banners.h
1 /*
2  * "$Id: banners.h 9350 2010-11-04 23:23:25Z mike $"
3  *
4  *   Banner definitions for the CUPS scheduler.
5  *
6  *   Copyright 2007-2010 by Apple Inc.
7  *   Copyright 1997-2006 by Easy Software Products.
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  * Banner information structure...
18  */
19
20 typedef struct                          /**** Banner file information ****/
21 {
22   char          *name;                  /* Name of banner */
23   mime_type_t   *filetype;              /* Filetype for banner */
24 } cupsd_banner_t;
25
26
27 /*
28  * Globals...
29  */
30
31 VAR cups_array_t        *Banners        VALUE(NULL);
32                                         /* Available banner files */
33
34
35 /*
36  * Prototypes...
37  */
38
39 extern cupsd_banner_t   *cupsdFindBanner(const char *name);
40 extern void             cupsdLoadBanners(const char *d);
41
42
43 /*
44  * End of "$Id: banners.h 9350 2010-11-04 23:23:25Z mike $".
45  */