]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/ipp-private.h
Fix source file header text duplication text duplication.
[thirdparty/cups.git] / cups / ipp-private.h
index b315d8b379b405b064cc3ea540c1b94aef8faf83..4b1947c63782789d4abd76a9b29d405f65e2b84a 100644 (file)
@@ -1,27 +1,16 @@
 /*
- * "$Id: ipp-private.h 5749 2006-07-18 18:36:09Z mike $"
+ * Private IPP definitions for CUPS.
  *
- *   Private IPP definitions for the Common UNIX Printing System (CUPS).
+ * Copyright 2007-2014 by Apple Inc.
+ * Copyright 1997-2006 by Easy Software Products.
  *
- *   Copyright 1997-2006 by Easy Software Products.
+ * These coded instructions, statements, and computer programs are the
+ * property of Apple Inc. and are protected by Federal copyright
+ * law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+ * which should have been included with this file.  If this file is
+ * missing or damaged, see the license at "http://www.cups.org/".
  *
- *   These coded instructions, statements, and computer programs are the
- *   property of Easy Software Products and are protected by Federal
- *   copyright law.  Distribution and use rights are outlined in the file
- *   "LICENSE.txt" which should have been included with this file.  If this
- *   file is missing or damaged please contact Easy Software Products
- *   at:
- *
- *       Attn: CUPS Licensing Information
- *       Easy Software Products
- *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636 USA
- *
- *       Voice: (301) 373-9600
- *       EMail: cups-info@cups.org
- *         WWW: http://www.cups.org
- *
- *   This file is subject to the Apple OS-Developed Software exception.
+ * This file is subject to the Apple OS-Developed Software exception.
  */
 
 #ifndef _CUPS_IPP_PRIVATE_H_
@@ -31,7 +20,7 @@
  * Include necessary headers...
  */
 
-#  include "ipp.h"
+#  include <cups/ipp.h>
 
 
 /*
@@ -43,15 +32,27 @@ extern "C" {
 #  endif /* __cplusplus */
 
 
+/*
+ * Constants...
+ */
+
+#  define IPP_BUF_SIZE (IPP_MAX_LENGTH + 2)
+                                       /* Size of buffer */
+
+
 /*
  * Structures...
  */
 
 typedef struct                         /**** Attribute mapping data ****/
 {
+  int          multivalue;             /* Option has multiple values? */
   const char   *name;                  /* Option/attribute name */
   ipp_tag_t    value_tag;              /* Value tag for this attribute */
   ipp_tag_t    group_tag;              /* Group tag for this attribute */
+  ipp_tag_t    alt_group_tag;          /* Alternate group tag for this
+                                        * attribute */
+  const ipp_op_t *operations;          /* Allowed operations for this attr */
 } _ipp_option_t;
 
 
@@ -59,10 +60,10 @@ typedef struct                              /**** Attribute mapping data ****/
  * Prototypes for private functions...
  */
 
-extern ipp_attribute_t *_ippAddAttr(ipp_t *, int);
+#ifdef DEBUG
+extern const char      *_ippCheckOptions(void);
+#endif /* DEBUG */
 extern _ipp_option_t   *_ippFindOption(const char *name);
-extern void            _ippFreeAttr(ipp_attribute_t *);
-
 
 /*
  * C++ magic...
@@ -72,7 +73,3 @@ extern void           _ippFreeAttr(ipp_attribute_t *);
 }
 #  endif /* __cplusplus */
 #endif /* !_CUPS_IPP_H_ */
-
-/*
- * End of "$Id: ipp-private.h 5749 2006-07-18 18:36:09Z mike $".
- */