aboutsummaryrefslogtreecommitdiff
path: root/shared/fs/fat32/types/types.zig
blob: 7be282ecbdb2032fb1390543a58a81c4b12f5a5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! FAT32 Types

pub const boot = @import("boot.zig");
pub const entry = @import("entry.zig");

// Boot sector types
pub const BootSector = boot.BootSector;
pub const FsInfo = boot.FsInfo;

// Entry types (Akiba terminology)
pub const StackEntry = entry.StackEntry;
pub const LongIdentityEntry = entry.LongIdentityEntry;
pub const TimeFormat = entry.TimeFormat;
pub const DateFormat = entry.DateFormat;

// FAT32 spec aliases
pub const DirEntry = entry.DirEntry;
pub const LongNameEntry = entry.LongNameEntry;