From 88db3e94ef35aac933334694fa3065da68266d91 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Fri, 8 Feb 2013 08:03:02 +0100 Subject: libfuse: remove deprecated fuse_read_cmd(), fuse_process_cmd() --- include/fuse.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'include/fuse.h') diff --git a/include/fuse.h b/include/fuse.h index 07282ab..361befa 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -942,9 +942,6 @@ void fuse_register_module(struct fuse_module *mod); /* NOTE: the following functions are deprecated, and will be removed from the 3.0 API. Use the lowlevel session functions instead */ -/** Function type used to process commands */ -typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *); - /** This is the part of fuse_main() before the event loop */ struct fuse *fuse_setup(int argc, char *argv[], const struct fuse_operations *op, size_t op_size, @@ -954,12 +951,6 @@ struct fuse *fuse_setup(int argc, char *argv[], /** This is the part of fuse_main() after the event loop */ void fuse_teardown(struct fuse *fuse, char *mountpoint); -/** Read a single command. If none are read, return NULL */ -struct fuse_cmd *fuse_read_cmd(struct fuse *f); - -/** Process a single command */ -void fuse_process_cmd(struct fuse *f, struct fuse_cmd *cmd); - /** Return the exited flag, which indicates if fuse_exit() has been called */ int fuse_exited(struct fuse *f); -- cgit v1.2.3