Browse Source

fuse_readdir_seq.hpp

tests
Antonio SJ Musumeci 5 days ago
parent
commit
84f85ba1b4
  1. 9
      src/fuse_readdir_seq.hpp

9
src/fuse_readdir_seq.hpp

@ -29,8 +29,11 @@ namespace FUSE
ReadDirSeq() {} ReadDirSeq() {}
~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);
}; };
} }
Loading…
Cancel
Save