aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-07-21 07:59:37 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-07-21 07:59:37 +0000
commit9b813af8631729cf7f626f0cbac08863bb315863 (patch)
tree1ccd7493b978e83e85f27063d88045dbdddec7bb /include
parente2aa2e243d729e29ad67f1b30aa3392ca9a9cdb2 (diff)
downloadlibfuse-9b813af8631729cf7f626f0cbac08863bb315863.tar.gz
fixes
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am2
-rw-r--r--include/fuse.h14
2 files changed, 8 insertions, 8 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index 269e0e1..ee8a83c 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in
fuseincludedir=$(includedir)/fuse
-fuseinclude_HEADERS = fuse.h fuse_compat.h
+fuseinclude_HEADERS = fuse.h fuse_compat.h fuse_common.h fuse_lowlevel.h
include_HEADERS = old/fuse.h
noinst_HEADERS = fuse_kernel.h
diff --git a/include/fuse.h b/include/fuse.h
index 6c6cf09..e285c07 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -145,7 +145,7 @@ struct fuse_operations {
* is permitted for the given flags. Optionally open may also
* return an arbitary filehandle in the fuse_file_info structure,
* which will be passed to all file operations.
- *
+ *
* Changed in version 2.2
*/
int (*open) (const char *, struct fuse_file_info *);
@@ -197,7 +197,7 @@ struct fuse_operations {
* not possible to determine if a flush is final, so each flush
* should be treated equally. Multiple write-flush sequences are
* relatively rare, so this shouldn't be a problem.
- *
+ *
* Changed in version 2.2
*/
int (*flush) (const char *, struct fuse_file_info *);
@@ -266,13 +266,13 @@ struct fuse_operations {
* passes non-zero offset to the filler function. When the buffer
* is full (or an error happens) the filler function will return
* '1'.
- *
+ *
* Introduced in version 2.3
*/
int (*readdir) (const char *, void *, fuse_fill_dir_t, off_t,
struct fuse_file_info *);
- /** Release directory
+ /** Release directory
*
* Introduced in version 2.3
*/
@@ -293,7 +293,7 @@ struct fuse_operations {
* The return value will passed in the private_data field of
* fuse_context to all file operations and as a parameter to the
* destroy() method.
- *
+ *
* Introduced in version 2.3
*/
void *(*init) (void);
@@ -302,7 +302,7 @@ struct fuse_operations {
* Clean up filesystem
*
* Called on filesystem exit.
- *
+ *
* Introduced in version 2.3
*/
void (*destroy) (void *);
@@ -448,7 +448,7 @@ struct fuse_context *fuse_get_context(void);
/**
* Obsolete, doesn't do anything
- *
+ *
* @return -EINVAL
*/
int fuse_invalidate(struct fuse *f, const char *path);