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.
21 lines
572 B
21 lines
572 B
#pragma once
|
|
|
|
#include "func_statx_base.hpp"
|
|
#include "func_statx_factory.hpp"
|
|
|
|
#include "func_wrapper.hpp"
|
|
|
|
|
|
namespace Func2
|
|
{
|
|
using Statx = FuncWrapper<Func2::StatxBase,
|
|
Func2::StatxFactory,
|
|
int,
|
|
const Branches&,
|
|
const fs::path&,
|
|
const u32&,
|
|
const u32&,
|
|
struct fuse_statx*&,
|
|
const FollowSymlinksEnum,
|
|
const s64&>;
|
|
}
|