1 /*
2  * << Haru Free PDF Library >> -- hpdf_pdfa.h
3  *
4  * URL: http://libharu.org
5  *
6  * Copyright (c) 1999-2006 Takeshi Kanno <takeshi_kanno@est.hi-ho.ne.jp>
7  * Copyright (c) 2007-2009 Antony Dovgal <tony@daylessday.org>
8  *
9  * Permission to use, copy, modify, distribute and sell this software
10  * and its documentation for any purpose is hereby granted without fee,
11  * provided that the above copyright notice appear in all copies and
12  * that both that copyright notice and this permission notice appear
13  * in supporting documentation.
14  * It is provided "as is" without express or implied warranty.
15  *
16  */
17 
18 #ifndef _HPDF_PDFA_H
19 #define _HPDF_PDFA_H
20 
21 #include "hpdf_doc.h"
22 #include "hpdf_objects.h"
23 
24 
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
30 HPDF_STATUS
31 HPDF_PDFA_AppendOutputIntents(HPDF_Doc pdf, const char *iccname, HPDF_Dict iccdict);
32 
33 HPDF_STATUS
34 HPDF_PDFA_SetPDFAConformance (HPDF_Doc pdf,
35 			      HPDF_PDFAType pdfatype);
36 
37 HPDF_STATUS
38 HPDF_PDFA_GenerateID(HPDF_Doc);
39 #ifdef __cplusplus
40 }
41 #endif
42 
43 #endif
44