aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse.h
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-10-03 14:11:59 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-10-03 14:11:59 +0000
commit836ab71baf1a8da35a245500057a3a8bee1d769d (patch)
tree8099e41972d049839eeed4006b632a5bc5b7a050 /include/fuse.h
parent807d8efd4ab406f3755428531d76ad235cc63957 (diff)
downloadlibfuse-836ab71baf1a8da35a245500057a3a8bee1d769d.tar.gz
fix
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/fuse.h b/include/fuse.h
index e64336e..84c0341 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -349,25 +349,6 @@ int fuse_main(int argc, char *argv[], const struct fuse_operations *op);
* More detailed API *
* ----------------------------------------------------------- */
-/*
- * Create a FUSE mountpoint
- *
- * Returns a control file descriptor suitable for passing to
- * fuse_new()
- *
- * @param mountpoint the mount point path
- * @param opts a comma separated list of mount options. Can be NULL.
- * @return the control file descriptor on success, -1 on failure
- */
-int fuse_mount(const char *mountpoint, const char *opts);
-
-/*
- * Umount a FUSE mountpoint
- *
- * @param mountpoint the mount point path
- */
-void fuse_unmount(const char *mountpoint);
-
/**
* Create a new FUSE filesystem.
*