You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
542 B

  1. #pragma once
  2. #include "fuse_msgbuf.h"
  3. int fuse_receive_buf(struct fuse_session *se,
  4. fuse_msgbuf_t *msgbuf);
  5. void fuse_process_buf(void *data,
  6. const fuse_msgbuf_t *msgbuf,
  7. struct fuse_chan *ch);
  8. int fuse_receive_buf_splice(struct fuse_chan *ch,
  9. fuse_msgbuf_t *msgbuf);
  10. void fuse_process_buf_splice(struct fuse_chan *ch,
  11. const fuse_msgbuf_t *msgbuf,
  12. void *data);