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.

14 lines
212 B

  1. #pragma once
  2. #include <stdint.h>
  3. struct fuse_chan;
  4. struct fuse_ll;
  5. typedef struct fuse_pollhandle_t fuse_pollhandle_t;
  6. struct fuse_pollhandle_t
  7. {
  8. uint64_t kh;
  9. struct fuse_chan *ch;
  10. struct fuse_ll *f;
  11. };