From 847962910f0bff071f3bf07c9abb87764fb6cac3 Mon Sep 17 00:00:00 2001 From: claude-bot Date: Mon, 13 Jul 2026 12:40:03 +0000 Subject: Import aap/librw @ master Snapshot for re3/reVC vendoring, per @lzcnt. Source: https://github.com/aap/librw (master). --- tools/hopalong/vfs.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tools/hopalong/vfs.h (limited to 'tools/hopalong/vfs.h') diff --git a/tools/hopalong/vfs.h b/tools/hopalong/vfs.h new file mode 100644 index 0000000..768b193 --- /dev/null +++ b/tools/hopalong/vfs.h @@ -0,0 +1,15 @@ +struct VFS_file +{ + const char *name; + rw::uint8 *data; + rw::uint32 length; +}; + +struct VFS +{ + // TODO: directories? + VFS_file *files; + int numFiles; +}; + +void installVFS(VFS *vfs); -- cgit v1.2.3