mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-12-04 06:34:05 +08:00
15 lines
212 B
C
15 lines
212 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
struct fuse_chan;
|
||
|
struct fuse_ll;
|
||
|
|
||
|
typedef struct fuse_pollhandle_t fuse_pollhandle_t;
|
||
|
struct fuse_pollhandle_t
|
||
|
{
|
||
|
uint64_t kh;
|
||
|
struct fuse_chan *ch;
|
||
|
struct fuse_ll *f;
|
||
|
};
|