fuse_i.h

来自「FUSE文件系统开发工具,将内核层面的文件系统开发过程平移到应用层面上来。」· C头文件 代码 · 共 37 行

H
37
字号
/*  FUSE: Filesystem in Userspace  Copyright (C) 2001-2007  Miklos Szeredi <miklos@szeredi.hu>  This program can be distributed under the terms of the GNU LGPLv2.  See the file COPYING.LIB*/#include "fuse.h"struct fuse_session;struct fuse_chan;struct fuse_lowlevel_ops;struct fuse_req;struct fuse_cmd {	char *buf;	size_t buflen;	struct fuse_chan *ch;};struct fuse *fuse_new_common(struct fuse_chan *ch, struct fuse_args *args,			     const struct fuse_operations *op,			     size_t op_size, void *user_data, int compat);int fuse_sync_compat_args(struct fuse_args *args);struct fuse_chan *fuse_kern_chan_new(int fd);struct fuse_session *fuse_lowlevel_new_common(struct fuse_args *args,					const struct fuse_lowlevel_ops *op,					size_t op_size, void *userdata);void fuse_kern_unmount_compat22(const char *mountpoint);void fuse_kern_unmount(const char *mountpoint, int fd);int fuse_kern_mount(const char *mountpoint, struct fuse_args *args);

⌨️ 快捷键说明

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