aboutsummaryrefslogtreecommitdiffstats
path: root/src/runtime.h
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2024-01-08 12:17:20 -0600
committerLibravatar bigfoot547 <[email protected]>2024-01-08 12:17:20 -0600
commitd38c13b2fe1293b499312bb4cfd66a56108c4b5e (patch)
tree998438c400a6b05f13d145270e95a9236ed7fb87 /src/runtime.h
parentadd to-do list (diff)
WIP: JRE stuff
Diffstat (limited to 'src/runtime.h')
-rw-r--r--src/runtime.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/runtime.h b/src/runtime.h
new file mode 100644
index 0000000..bf2e523
--- /dev/null
+++ b/src/runtime.h
@@ -0,0 +1,9 @@
+#ifndef L2SU_RUNTIME_H_INCLUDED
+#define L2SU_RUNTIME_H_INCLUDED
+
+#include <jansson.h>
+
+int l2_runtime_load_manifest(json_t **manifest);
+int l2_runtime_install_component(json_t *manifest, const char *component);
+
+#endif /* include guard */