]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/ipp-private.h
Load cups into easysw/current.
[thirdparty/cups.git] / cups / ipp-private.h
CommitLineData
fa73b229 1/*
bc44d920 2 * "$Id: ipp-private.h 6649 2007-07-11 21:46:42Z mike $"
fa73b229 3 *
4 * Private IPP definitions for the Common UNIX Printing System (CUPS).
5 *
bc44d920 6 * Copyright 2007 by Apple Inc.
fa73b229 7 * Copyright 1997-2006 by Easy Software Products.
8 *
9 * These coded instructions, statements, and computer programs are the
bc44d920 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/".
fa73b229 14 *
15 * This file is subject to the Apple OS-Developed Software exception.
16 */
17
18#ifndef _CUPS_IPP_PRIVATE_H_
19# define _CUPS_IPP_PRIVATE_H_
20
21/*
22 * Include necessary headers...
23 */
24
25# include "ipp.h"
26
27
28/*
29 * C++ magic...
30 */
31
32# ifdef __cplusplus
33extern "C" {
34# endif /* __cplusplus */
35
36
8ca02f3c 37/*
38 * Structures...
39 */
40
41typedef struct /**** Attribute mapping data ****/
42{
43 const char *name; /* Option/attribute name */
44 ipp_tag_t value_tag; /* Value tag for this attribute */
45 ipp_tag_t group_tag; /* Group tag for this attribute */
46} _ipp_option_t;
47
48
fa73b229 49/*
50 * Prototypes for private functions...
51 */
52
757d2cad 53extern ipp_attribute_t *_ippAddAttr(ipp_t *, int);
8ca02f3c 54extern _ipp_option_t *_ippFindOption(const char *name);
757d2cad 55extern void _ippFreeAttr(ipp_attribute_t *);
fa73b229 56
57
58/*
59 * C++ magic...
60 */
61
62# ifdef __cplusplus
63}
64# endif /* __cplusplus */
65#endif /* !_CUPS_IPP_H_ */
66
67/*
bc44d920 68 * End of "$Id: ipp-private.h 6649 2007-07-11 21:46:42Z mike $".
fa73b229 69 */