diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-07-15 09:59:59 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-07-15 09:59:59 +0000 |
commit | bd10a7b16f10c1a5f61a4531c8631048e00fa230 (patch) | |
tree | 3662bd63e8b6b4946a757f73ac65c47a32b63beb /lib/fuse_kernel_compat5.h | |
parent | 163581a2d291cf8b7d93e9e58756a43c8209af1c (diff) | |
download | libfuse-bd10a7b16f10c1a5f61a4531c8631048e00fa230.tar.gz |
added lowlevel API
Diffstat (limited to 'lib/fuse_kernel_compat5.h')
-rw-r--r-- | lib/fuse_kernel_compat5.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/lib/fuse_kernel_compat5.h b/lib/fuse_kernel_compat5.h deleted file mode 100644 index 49936dc..0000000 --- a/lib/fuse_kernel_compat5.h +++ /dev/null @@ -1,40 +0,0 @@ -struct fuse_mkdir_in_compat5 { - __u32 mode; -}; - -struct fuse_setattr_in_compat5 { - __u32 valid; - struct fuse_attr attr; -}; - -struct fuse_open_out_compat5 { - __u64 fh; - __u32 open_flags; -}; - -struct fuse_write_out_compat5 { - __u32 size; -}; - -struct fuse_getxattr_out_compat5 { - __u32 size; -}; - -struct fuse_in_header_compat5 { - __u32 len; - __u32 opcode; - __u64 unique; - __u64 nodeid; - __u32 uid; - __u32 gid; - __u32 pid; -}; - -struct fuse_dirent_compat5 { - __u64 ino; - __u32 namelen; - __u32 type; - char name[0]; -}; - -#define FUSE_NAME_OFFSET_COMPAT5 ((unsigned) ((struct fuse_dirent_compat5 *) 0)->name) |