]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/banners.h
Remove svn:keywords since they cause svn_load_dirs.pl to complain about every file.
[thirdparty/cups.git] / scheduler / banners.h
CommitLineData
ef416fc2 1/*
c07d5b2d 2 * "$Id: banners.h 177 2006-06-21 00:20:03Z jlovell $"
ef416fc2 3 *
4 * Banner definitions for the Common UNIX Printing System (CUPS).
5 *
fa73b229 6 * Copyright 1997-2006 by Easy Software Products.
ef416fc2 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 * 44141 Airport View Drive, Suite 204
18 * Hollywood, Maryland 20636 USA
19 *
20 * Voice: (301) 373-9600
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
23 */
24
25/*
26 * Banner information structure...
27 */
28
bd7854cb 29typedef struct /**** Banner file information ****/
ef416fc2 30{
bd7854cb 31 char *name; /* Name of banner */
ef416fc2 32 mime_type_t *filetype; /* Filetype for banner */
33} cupsd_banner_t;
34
35
36/*
37 * Globals...
38 */
39
fa73b229 40VAR cups_array_t *Banners VALUE(NULL);
ef416fc2 41 /* Available banner files */
42
43
44/*
45 * Prototypes...
46 */
47
ef416fc2 48extern cupsd_banner_t *cupsdFindBanner(const char *name);
49extern void cupsdLoadBanners(const char *d);
50
51
52/*
c07d5b2d 53 * End of "$Id: banners.h 177 2006-06-21 00:20:03Z jlovell $".
ef416fc2 54 */