fuse_fill_dir_t

Function to add an entry in a readdir() operation

@param buf the buffer passed to the readdir() operation @param name the file name of the directory entry @param stat file attributes, can be NULL @param off offset of the next entry or zero @return 1 if buffer is full, zero otherwise

extern (C)
alias fuse_fill_dir_t = int function
(
void* buf
,
char* name
,
stat_t* stbuf
,
off_t off
)
nothrow @nogc

Meta