lib: xpc: implement support for iterating through directories

This commit is contained in:
2026-03-24 12:41:12 +00:00
parent 1eb6853cb0
commit 30614e679b
6 changed files with 61 additions and 3 deletions

View File

@@ -92,6 +92,7 @@ struct fs_context *fs_context_create(struct fs_allocator *alloc)
ctx->ctx_vtable.write = fs_msg_write;
ctx->ctx_vtable.seek = fs_msg_seek;
ctx->ctx_vtable.map = fs_msg_map;
ctx->ctx_vtable.getdents = fs_msg_getdents;
return ctx;
}