mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-23 20:24:17 +08:00
fix
This commit is contained in:
parent
ea4b961c29
commit
60c69a2191
@ -507,7 +507,7 @@ int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op,
|
|||||||
typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *);
|
typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *);
|
||||||
|
|
||||||
/** This is the part of fuse_main() before the event loop */
|
/** This is the part of fuse_main() before the event loop */
|
||||||
struct fuse *fuse_setup(int argc, char *argv[],
|
struct fuse *fuse_setup(int argc, char *argv[],
|
||||||
const struct fuse_operations *op, size_t op_size,
|
const struct fuse_operations *op, size_t op_size,
|
||||||
char **mountpoint, int *multithreaded, int *fd);
|
char **mountpoint, int *multithreaded, int *fd);
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@ typedef int (*fuse_opt_proc_t)(void *data, const char *arg, int key,
|
|||||||
* Option parsing function
|
* Option parsing function
|
||||||
*
|
*
|
||||||
* If 'args' was returned from a previous call to fuse_opt_parse() or
|
* If 'args' was returned from a previous call to fuse_opt_parse() or
|
||||||
* it was constructed from
|
* it was constructed from
|
||||||
*
|
*
|
||||||
* A NULL 'args' is equivalent to an empty argument vector
|
* A NULL 'args' is equivalent to an empty argument vector
|
||||||
*
|
*
|
||||||
|
@ -19,6 +19,6 @@ struct fuse_cmd {
|
|||||||
|
|
||||||
struct fuse_session *fuse_get_session(struct fuse *f);
|
struct fuse_session *fuse_get_session(struct fuse *f);
|
||||||
|
|
||||||
struct fuse *fuse_new_common(int fd, struct fuse_args *args,
|
struct fuse *fuse_new_common(int fd, struct fuse_args *args,
|
||||||
const struct fuse_operations *op,
|
const struct fuse_operations *op,
|
||||||
size_t op_size, int compat);
|
size_t op_size, int compat);
|
||||||
|
Loading…
Reference in New Issue
Block a user