mirror of https://github.com/trapexit/mergerfs.git
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
236 B
15 lines
236 B
#pragma once
|
|
|
|
#include "fuse_req_ctx.h"
|
|
|
|
struct fuse_ll;
|
|
struct fuse_chan;
|
|
|
|
typedef struct fuse_req_t fuse_req_t;
|
|
struct fuse_req_t
|
|
{
|
|
fuse_req_ctx_t ctx;
|
|
struct fuse_ll *f;
|
|
struct fuse_chan *ch;
|
|
unsigned int ioctl_64bit : 1;
|
|
};
|