libropkg: add functions for extracting metadata from package files

This commit is contained in:
2025-08-06 22:11:26 +01:00
parent 22510ca52c
commit 562c15f685
2 changed files with 145 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef ROPKG_PACKAGE_H_
#define ROPKG_PACKAGE_H_
#include <blue/core/error.h>
#include <blue/io/directory.h>
#include <ropkg/misc.h>
struct ropkg_reader;
ROPKG_API b_result
ropkg_extract_metadata(struct ropkg_reader *reader, b_directory *dest);
#endif