From 84f85ba1b46722e7811736fb013cff19f2d92d62 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Mon, 15 Dec 2025 12:44:31 -0600 Subject: [PATCH] fuse_readdir_seq.hpp --- src/fuse_readdir_seq.hpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/fuse_readdir_seq.hpp b/src/fuse_readdir_seq.hpp index 647c5f72..83c59fcb 100644 --- a/src/fuse_readdir_seq.hpp +++ b/src/fuse_readdir_seq.hpp @@ -29,8 +29,11 @@ namespace FUSE ReadDirSeq() {} ~ReadDirSeq() {} - int operator()(const fuse_req_ctx_t *ctx, - const fuse_file_info_t *ffi, - fuse_dirents_t *buf); + int opendir(const fuse_req_ctx_t *ctx, + const char *fusepath, + fuse_file_info_t *ffi); + int readdir(const fuse_req_ctx_t *ctx, + const fuse_file_info_t *ffi, + fuse_dirents_t *buf); }; }