LeviLamina
Loading...
Searching...
No Matches
FileInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace bx {
6
7struct FileInfo {
8public:
9 // FileInfo inner types define
10 enum class Enum : int {
11 Regular = 0,
12 Directory = 1,
13 Count = 2,
14 };
15
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, uint64> m_size;
20 ::ll::TypedStorage<4, 4, ::bx::FileInfo::Enum> m_type;
21 // NOLINTEND
22};
23
24} // namespace bx
Definition FileInfo.h:7