fuse_lowlevel_compat.h

来自「UNIX/LINUX下面的用户文件系统」· C头文件 代码 · 共 30 行

H
30
字号
/*    FUSE: Filesystem in Userspace    Copyright (C) 2001-2006  Miklos Szeredi <miklos@szeredi.hu>    This program can be distributed under the terms of the GNU LGPL.    See the file COPYING.LIB.*//* these definitions provide source compatibility to prior versions.   Do not include this file directly! */#include <sys/statfs.h>struct fuse_file_info_compat {    int flags;    unsigned long fh;    int writepage;    unsigned int direct_io : 1;    unsigned int keep_cache : 1;};int fuse_reply_statfs_compat(fuse_req_t req, const struct statfs *stbuf);int fuse_reply_open_compat(fuse_req_t req,                           const struct fuse_file_info_compat *fi);struct fuse_session *fuse_lowlevel_new_compat(const char *opts,                                              const struct fuse_lowlevel_ops *op,                                              size_t op_size, void *userdata);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?