f6e9afcc9eb166ac2e33f164e2d04512541fe61c
[wrappi.git] / generator / wrappi_c.ml
1 (* wrappi
2  * Copyright (C) 2011 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  *)
18
19 open Wrappi_pr
20 open Wrappi_boilerplate
21
22 let generate_lib_wrappi_h api =
23   generate_header CStyle LGPLv2plus;
24
25   pr "\
26 #ifndef WRAPPI_H_
27 #define WRAPPI_H_
28
29 #ifdef __cplusplus
30 extern \"C\" {
31 #endif
32
33 ";
34
35
36
37
38   pr "\
39
40 #ifdef __cplusplus
41 }
42 #endif
43
44 #endif /* WRAPPI_H_ */
45 "
46
47 let generate api =
48   output_to "lib/wrappi.h" generate_lib_wrappi_h api