Jamie Reece Wilson
b35b290afd
[+] AuFS::EFSDeviceType [+] AuFS::EFSBusType [+] AuFS::LogicalUsedResponse [+] AuFS::LogicalOffsetResponse [+] AuFS::FSLogicalPartition [+] AuFS::FSDevice [+] AuFS::GetRootFromPath [+] AuFS::GetDeviceFromPath [+] AuFS::GetDeviceFromRoot [+] AuFS::GetLogicalMountFromPath [+] AuFS::TrySimplifyDevicePath [+] AuFS::GetPerformanceBufferSizeFromPath [+] AuFS::GetPhysicalSectorSizeFromPath [+] AuFS::GetLogicalSectorSizeFromPath [+] AuFS::GetLogicalUsedFromPath [+] AuFS::GetLogicalUsedFromLogicalDevice [+] AuFS::GetDeviceSizeInBytes [+] AuFS::GetDeviceModel [+] AuFS::GetFSDeviceByFilePath [+] AuFS::GetFSDeviceByDevice [+] AuFS::GetFSDevices [+] AuFS::GetFSDevicesCachedUnsafe [+] AuFS::ResetDeviceCache [+] FSPlatformDevices.cpp [+] FSPlatformDevices.NT.cpp (holding back Linux)
17 lines
366 B
C++
17 lines
366 B
C++
/***
|
|
Copyright (C) 2023 Jamie Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: FSPlatformDevices.hpp
|
|
Date: 2023-08-11
|
|
Date: 2023-12-05
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#include <Aurora/IO/FS/Devices.hpp>
|
|
|
|
namespace Aurora::IO::FS
|
|
{
|
|
inline AuList<FSDevice> gCachedDevices;
|
|
inline AuThreadPrimitives::CriticalSection gFSDirMutex;
|
|
} |