confuse 0.1.0

A fuser-compatible filesystem API facade using Dokan on Windows and fuser elsewhere.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod consts {
    /// FUSE file locking flags (subset of `flock(2)`).
    pub const FUSE_LK_FLOCK: u32 = 1 << 0;

    /// Maximum number of iovecs in a single ioctl request.
    pub const FUSE_IOCTL_MAX_IOV: u32 = 256;

    /// Minimum read buffer size (in bytes) that the kernel must guarantee.
    pub const FUSE_MIN_READ_BUFFER: usize = 8192;
}