File: fusefs_fuse.h

package info (click to toggle)
ruby-fusefs 0.7.0-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: ansic: 1,141; ruby: 760; sh: 10; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* fusefs_fuse.h */

/* This is rewriting most of the things that occur
 * in fuse_main up through fuse_loop */

#ifndef __FUSEFS_FUSE_H_
#define __FUSEFS_FUSE_H_

struct fuse_args;

int fusefs_fd();
int fusefs_unmount();
int fusefs_ehandler();
int fusefs_setup(char *mountpoint, const struct fuse_operations *op, struct fuse_args *opts);
int fusefs_process();
int fusefs_uid();
int fusefs_gid();

#endif