summaryrefslogtreecommitdiff
path: root/libfuse-lite/fuse_i.h (plain)
blob: 38c45c72bec23db15c1e280abd7f94b7da90cbc9
1/*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
4
5 This program can be distributed under the terms of the GNU LGPLv2.
6 See the file COPYING.LIB
7*/
8
9#include "fuse.h"
10
11struct fuse_session;
12struct fuse_chan;
13struct fuse_lowlevel_ops;
14struct fuse_req;
15
16struct fuse_cmd {
17 char *buf;
18 size_t buflen;
19 struct fuse_chan *ch;
20};
21
22struct fuse_chan *fuse_kern_chan_new(int fd);
23
24void fuse_kern_unmount(const char *mountpoint, int fd);
25int fuse_kern_mount(const char *mountpoint, struct fuse_args *args);
26