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