summaryrefslogtreecommitdiffstats
path: root/src/bindings/ingen_bindings.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bindings/ingen_bindings.hpp')
-rw-r--r--src/bindings/ingen_bindings.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/bindings/ingen_bindings.hpp b/src/bindings/ingen_bindings.hpp
new file mode 100644
index 00000000..0d501de9
--- /dev/null
+++ b/src/bindings/ingen_bindings.hpp
@@ -0,0 +1,19 @@
+#ifndef INGEN_BINDINGS_HPP
+#define INGEN_BINDINGS_HPP
+
+namespace Ingen {
+namespace Shared {
+
+
+class World;
+extern World* ingen_world;
+
+extern "C" {
+ bool run(World* world, const char* filename);
+ void script_iteration(World* world);
+}
+
+} // namespace Shared
+} // namespace Ingen
+
+#endif // INGEN_BINDINGS_HPP