/*1* Banner definitions for the CUPS scheduler.2*3* Copyright 2007-2010 by Apple Inc.4* Copyright 1997-2006 by Easy Software Products.5*6* Licensed under Apache License v2.0. See the file "LICENSE" for more information.7*/89/*10* Banner information structure...11*/1213typedef struct /**** Banner file information ****/14{15char *name; /* Name of banner */16mime_type_t *filetype; /* Filetype for banner */17} cupsd_banner_t;181920/*21* Globals...22*/2324VAR cups_array_t *Banners VALUE(NULL);25/* Available banner files */262728/*29* Prototypes...30*/3132extern cupsd_banner_t *cupsdFindBanner(const char *name);33extern void cupsdLoadBanners(const char *d);343536