bf34527c0a213ede577e26863b905d3afb73a765
[vuplus_bitbake] / lib / bb / parse / parse_c / python_output.h
1 #ifndef PYTHON_OUTPUT_H
2 #define PYTHON_OUTPUT_H
3 /*
4 Copyright (C) 2006 Holger Hans Peter Freyther
5
6 Permission is hereby granted, free of charge, to any person obtaining a copy
7 of this software and associated documentation files (the "Software"), to deal
8 in the Software without restriction, including without limitation the rights
9 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 copies of the Software, and to permit persons to whom the Software is
11 furnished to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in all
14 copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
19 SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
20 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
22 THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
24 This is the glue:
25     It will be called from the lemon grammar and will call into
26     python to set certain things.
27
28 */
29
30 extern "C" {
31
32 struct lex_t;
33
34 extern void e_assign(lex_t*, const char*, const char*);
35 extern void e_export(lex_t*, const char*);
36 extern void e_immediate(lex_t*, const char*, const char*);
37 extern void e_cond(lex_t*, const char*, const char*);
38 extern void e_prepend(lex_t*, const char*, const char*);
39 extern void e_append(lex_t*, const char*, const char*);
40 extern void e_precat(lex_t*, const char*, const char*);
41 extern void e_postcat(lex_t*, const char*, const char*);
42
43 extern void e_addtask(lex_t*, const char*, const char*, const char*);
44 extern void e_addhandler(lex_t*,const char*);
45 extern void e_export_func(lex_t*, const char*);
46 extern void e_inherit(lex_t*, const char*);
47 extern void e_include(lex_t*, const char*);
48 extern void e_require(lex_t*, const char*);
49 extern void e_proc(lex_t*, const char*, const char*);
50 extern void e_proc_python(lex_t*, const char*, const char*);
51 extern void e_proc_fakeroot(lex_t*, const char*, const char*);
52 extern void e_def(lex_t*, const char*, const char*, const char*);
53 extern void e_parse_error(lex_t*);
54
55 }
56 #endif // PYTHON_OUTPUT_H