aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/lacweb.h8
-rw-r--r--include/types.h8
2 files changed, 13 insertions, 3 deletions
diff --git a/include/lacweb.h b/include/lacweb.h
index 26f85402..14431df1 100644
--- a/include/lacweb.h
+++ b/include/lacweb.h
@@ -1,3 +1,5 @@
-typedef int lw_Basis_int;
-typedef float lw_Basis_float;
-typedef char* lw_Basis_string;
+#include "types.h"
+
+extern lw_unit lw_unit_v;
+
+void lw_write(const char*);
diff --git a/include/types.h b/include/types.h
new file mode 100644
index 00000000..28a8ea80
--- /dev/null
+++ b/include/types.h
@@ -0,0 +1,8 @@
+typedef int lw_Basis_int;
+typedef float lw_Basis_float;
+typedef char* lw_Basis_string;
+
+struct __lws_0 {
+};
+
+typedef struct __lws_0 lw_unit;