]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/banners.h
Rename all types and functions to use cupsd prefix.
[thirdparty/cups.git] / scheduler / banners.h
CommitLineData
02d91449 1/*
c9d3f842 2 * "$Id$"
02d91449 3 *
4 * Banner definitions for the Common UNIX Printing System (CUPS).
5 *
c9d3f842 6 * Copyright 1997-2005 by Easy Software Products.
02d91449 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
bcd9e019 18 * Hollywood, Maryland 20636 USA
02d91449 19 *
9639c4de 20 * Voice: (301) 373-9600
02d91449 21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
23 */
24
25/*
26 * Banner information structure...
27 */
28
29typedef struct
30{
31 char name[256]; /* Name of banner */
02d91449 32 mime_type_t *filetype; /* Filetype for banner */
589eb420 33} cupsd_banner_t;
02d91449 34
35
36/*
37 * Globals...
38 */
39
40VAR int NumBanners VALUE(0);
41 /* Number of banner files available */
589eb420 42VAR cupsd_banner_t *Banners VALUE(NULL);
02d91449 43 /* Available banner files */
44
45
46/*
47 * Prototypes...
48 */
49
589eb420 50extern void cupsdAddBanner(const char *name, const char *filename);
51extern cupsd_banner_t *cupsdFindBanner(const char *name);
52extern void cupsdLoadBanners(const char *d);
02d91449 53
54
55/*
c9d3f842 56 * End of "$Id$".
02d91449 57 */