• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Private MIME type/conversion database definitions for CUPS.
3  *
4  * Copyright © 2020-2024 by OpenPrinting.
5  * Copyright © 2011-2018 by Apple Inc.
6  *
7  * Licensed under Apache License v2.0.  See the file "LICENSE" for more
8  * information.
9  */
10 
11 #ifndef _CUPS_MIME_PRIVATE_H_
12 #  define _CUPS_MIME_PRIVATE_H_
13 
14 #  include "mime.h"
15 
16 
17 /*
18  * C++ magic...
19  */
20 
21 #  ifdef __cplusplus
22 extern "C" {
23 #  endif /* __cplusplus */
24 
25 
26 /*
27  * Prototypes...
28  */
29 
30 extern void	_mimeError(mime_t *mime, const char *format, ...) _CUPS_FORMAT(2, 3);
31 
32 
33 #  ifdef __cplusplus
34 }
35 #  endif /* __cplusplus */
36 #endif /* !_CUPS_MIME_PRIVATE_H_ */
37