]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lily-guile.hh
patch::: 1.1.8.hwn1
[lilypond.git] / lily / include / lily-guile.hh
1 /*
2   lily-guile.hh encapsulate guile
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef LILY_GUILE_HH
10 #define LILY_GUILE_HH
11
12 #include "config.hh"
13 #include  "string.hh"
14
15 #include <guile/gh.h>
16 #include <libguile.h>
17
18 SCM ly_symbol (String name);
19
20 SCM ly_append (SCM a, SCM b);
21 SCM ly_eval (SCM a);
22 SCM ly_func_o (char const* name);
23 SCM ly_lambda_o ();
24 SCM ly_list1 (SCM a);
25 SCM ly_quote ();
26 SCM ly_quote_scm (SCM s);
27
28
29 #include "array.hh"
30 #include "scalar.hh"
31
32 SCM lambda_scm (String str, Array<int> args_arr);
33 SCM lambda_scm (String str, Array<Real> args_arr);
34 SCM lambda_scm (String str, Array<Scalar> args_arr);
35
36
37 void read_lily_scm_file (String);
38
39 #endif // LILY_GUILE_HH