1/*
2 * "$Id: mime-private.h 3413 2011-09-07 22:48:34Z msweet $"
3 *
4 *   Private MIME type/conversion database definitions for CUPS.
5 *
6 *   Copyright 2011 by Apple Inc.
7 *
8 *   These coded instructions, statements, and computer programs are the
9 *   property of Apple Inc. and are protected by Federal copyright
10 *   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
11 *   which should have been included with this file.  If this file is
12 *   file is missing or damaged, see the license at "http://www.cups.org/".
13 */
14
15#ifndef _CUPS_MIME_PRIVATE_H_
16#  define _CUPS_MIME_PRIVATE_H_
17
18#  include "mime.h"
19
20
21/*
22 * C++ magic...
23 */
24
25#  ifdef __cplusplus
26extern "C" {
27#  endif /* __cplusplus */
28
29
30/*
31 * Prototypes...
32 */
33
34extern void	_mimeError(mime_t *mime, const char *format, ...)
35		__attribute__ ((__format__ (__printf__, 2, 3)));
36
37
38#  ifdef __cplusplus
39}
40#  endif /* __cplusplus */
41#endif /* !_CUPS_MIME_PRIVATE_H_ */
42
43/*
44 * End of "$Id: mime-private.h 3413 2011-09-07 22:48:34Z msweet $".
45 */
46