mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-12-01 13:03:47 +08:00
13 lines
181 B
C
13 lines
181 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct fuse_msgbuf_t fuse_msgbuf_t;
|
|
struct fuse_msgbuf_t
|
|
{
|
|
char *mem;
|
|
uint32_t size;
|
|
uint32_t used;
|
|
int pipefd[2];
|
|
};
|