/* ======================================== Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license. ======================================== */ #ifndef STORAGEKIT_STORAGEKIT_H #define STORAGEKIT_STORAGEKIT_H #define kDriveSectorSizeHDD (512U) #define kDriveSectorSizeSSD (512U) #define kDriveSectorSizeOptical (2048U) namespace Kernel { template class IDevice; class NVMEDeviceInterface; class AHCIDeviceInterface; class ATADeviceInterface; class SCSIDeviceInterface; } // namespace Kernel #endif