summaryrefslogtreecommitdiff
path: root/indra/lscript/lscript_rt_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/lscript/lscript_rt_interface.h')
-rw-r--r--indra/lscript/lscript_rt_interface.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/indra/lscript/lscript_rt_interface.h b/indra/lscript/lscript_rt_interface.h
new file mode 100644
index 0000000000..1572350a35
--- /dev/null
+++ b/indra/lscript/lscript_rt_interface.h
@@ -0,0 +1,18 @@
+/**
+ * @file lscript_rt_interface.h
+ * @brief Interface between compiler library and applications
+ *
+ * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_LSCRIPT_RT_INTERFACE_H
+#define LL_LSCRIPT_RT_INTERFACE_H
+
+BOOL lscript_compile(char *filename, BOOL is_god_like = FALSE);
+BOOL lscript_compile(const char* src_filename, const char* dst_filename,
+ const char* err_filename, BOOL is_god_like = FALSE);
+void lscript_run(char *filename, BOOL b_debug);
+
+
+#endif