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.
24 lines
396 B
24 lines
396 B
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct fuse_attr_s fuse_attr_t;
|
|
struct fuse_attr_s
|
|
{
|
|
uint64_t ino;
|
|
uint64_t size;
|
|
uint64_t blocks;
|
|
uint64_t atime;
|
|
uint64_t mtime;
|
|
uint64_t ctime;
|
|
uint32_t atimensec;
|
|
uint32_t mtimensec;
|
|
uint32_t ctimensec;
|
|
uint32_t mode;
|
|
uint32_t nlink;
|
|
uint32_t uid;
|
|
uint32_t gid;
|
|
uint32_t rdev;
|
|
uint32_t blksize;
|
|
uint32_t _padding;
|
|
};
|