libropkg: implement package manager system directory initialisation

This commit is contained in:
2025-07-21 22:46:20 +01:00
parent 49d313400c
commit b11682d55d
4 changed files with 247 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef ROPKG_INSTANCE_H_
#define ROPKG_INSTANCE_H_
#include <blue/core/error.h>
#include <ropkg/misc.h>
#include <ropkg/status.h>
struct ropkg_instance;
ROPKG_API b_result
ropkg_instance_open(const char *path, struct ropkg_instance **out);
ROPKG_API b_result
ropkg_instance_bootstrap(const char *path, struct ropkg_instance **out);
#endif