aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse_i.h
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2009-08-18 16:13:33 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2009-08-18 16:13:33 +0000
commit697237681259821d3e26162186f2ed8d17cb8b22 (patch)
treed3e75883959e1383771dce1dfe1e3a3fbfc8a2c4 /lib/fuse_i.h
parent7960e99ebbccfea337ab8fc6664918d83027b566 (diff)
* Add missing fuse_session_data to versionscript
* Make sure all global symbols are prefixed with "fuse_" or "cuse_" * Released 2.8.0
Diffstat (limited to 'lib/fuse_i.h')
-rw-r--r--lib/fuse_i.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/fuse_i.h b/lib/fuse_i.h
index 2d3790a..7b99125 100644
--- a/lib/fuse_i.h
+++ b/lib/fuse_i.h
@@ -83,9 +83,9 @@ 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);
-int send_reply_iov(fuse_req_t req, int error, struct iovec *iov, int count);
-int send_reply_iov_nofree(fuse_req_t req, int error, struct iovec *iov, int count);
-void free_req(fuse_req_t req);
+int fuse_send_reply_iov_nofree(fuse_req_t req, int error, struct iovec *iov,
+ int count);
+void fuse_free_req(fuse_req_t req);
struct fuse *fuse_setup_common(int argc, char *argv[],
@@ -97,4 +97,4 @@ struct fuse *fuse_setup_common(int argc, char *argv[],
void *user_data,
int compat);
-void do_cuse_init(fuse_req_t req, fuse_ino_t nodeide, const void *inarg);
+void cuse_lowlevel_init(fuse_req_t req, fuse_ino_t nodeide, const void *inarg);