mergerfs/libfuse/include/fuse_msgbuf.h
2023-01-16 13:15:53 -05:00

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];
};