fuse_fill_dir_t

Function to add an entry in a readdir() operation

The *offset* parameter can be any non-zero value that enables the filesystem to identify the current point in the directory stream. It does not need to be the actual physical position. A value of zero is reserved to indicate that seeking in directories is not supported.

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

Return Value

1 if buffer is full, zero otherwise

Meta