diff options
Diffstat (limited to 'lib/fuse_uring_i.h')
-rw-r--r-- | lib/fuse_uring_i.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/fuse_uring_i.h b/lib/fuse_uring_i.h new file mode 100644 index 0000000..fefb8a0 --- /dev/null +++ b/lib/fuse_uring_i.h @@ -0,0 +1,18 @@ +/* + * FUSE: Filesystem in Userspace + * Copyright (C) 2025 Bernd Schubert <bschubert@ddn.com> + * This program can be distributed under the terms of the GNU LGPLv2. + * See the file COPYING.LIB + */ + +#ifndef FUSE_URING_I_H_ +#define FUSE_URING_I_H_ + +#include "fuse_lowlevel.h" + +struct fuse_in_header; + +int fuse_uring_start(struct fuse_session *se); +int fuse_uring_stop(struct fuse_session *se); + +#endif // FUSE_URING_I_H_ |