aboutsummaryrefslogtreecommitdiff
path: root/guile_interface.h
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-18 18:56:18 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-18 18:56:18 +0100
commit7dd22dfad91491b21da600e47a495c047d61e834 (patch)
tree0e8488e8b9a0926cdc3da92ecc2be195c25d1a87 /guile_interface.h
parentMaybe improved makefile. (diff)
downloadcalp-7dd22dfad91491b21da600e47a495c047d61e834.tar.gz
calp-7dd22dfad91491b21da600e47a495c047d61e834.tar.xz
Start rework of guile interface.
Diffstat (limited to 'guile_interface.h')
-rw-r--r--guile_interface.h15
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 */