1 /* 2 * Private MIME type/conversion database definitions for CUPS. 3 * 4 * Copyright © 2011-2018 by Apple Inc. 5 * 6 * Licensed under Apache License v2.0. See the file "LICENSE" for more 7 * information. 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 29 extern void _mimeError(mime_t *mime, const char *format, ...) _CUPS_FORMAT(2, 3); 30 31 32 # ifdef __cplusplus 33 } 34 # endif /* __cplusplus */ 35 #endif /* !_CUPS_MIME_PRIVATE_H_ */ 36