aboutsummaryrefslogtreecommitdiff
path: root/guile_interface.h__
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-18 22:39:56 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-18 22:39:56 +0100
commit33fa5b5d0c512c72c1d50b9420a36431cd10eb5d (patch)
tree6642ec876ecd15ce62f83075d7f9d261050fe3a6 /guile_interface.h__
parentStart rework of guile interface. (diff)
downloadcalp-33fa5b5d0c512c72c1d50b9420a36431cd10eb5d.tar.gz
calp-33fa5b5d0c512c72c1d50b9420a36431cd10eb5d.tar.xz
Made to compile as C++.
Diffstat (limited to 'guile_interface.h__')
-rw-r--r--guile_interface.h__15
1 files changed, 15 insertions, 0 deletions
diff --git a/guile_interface.h__ b/guile_interface.h__
new file mode 100644
index 00000000..91e25a72
--- /dev/null
+++ b/guile_interface.h__
@@ -0,0 +1,15 @@
+#ifndef GUILE_INTERFACE_H
+#define GUILE_INTERFACE_H
+
+#include <libguile.h>
+
+void init_vcomponent ();
+void init_vcomponent_type (void);
+
+SCM make_vcomponent (SCM);
+SCM vcomponent_get_attribute (SCM, SCM);
+SCM vcomponent_child_count (SCM);
+SCM vcomponent_children (SCM);
+SCM vcomponent_typeof (SCM);
+
+#endif /* GUILE_INTERFACE_H */