From 76424950e373d3b04ac3dd13019151bfba3e8423 Mon Sep 17 00:00:00 2001 From: sumuel Date: Mon, 17 Aug 2026 20:44:55 +0000 Subject: Add the files --- src/detection/disk/disk.h | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/detection/disk/disk.h (limited to 'src/detection/disk/disk.h') diff --git a/src/detection/disk/disk.h b/src/detection/disk/disk.h new file mode 100644 index 0000000..57aaf2f --- /dev/null +++ b/src/detection/disk/disk.h @@ -0,0 +1,40 @@ +#pragma once + +#include "fastfetch.h" +#include "modules/disk/option.h" + +#ifdef _WIN32 + #define FF_DISK_FOLDER_SEPARATOR ';' +#else + #define FF_DISK_FOLDER_SEPARATOR ':' +#endif + +typedef struct FFDisk { + FFstrbuf mountFrom; + FFstrbuf mountpoint; + FFstrbuf filesystem; + FFstrbuf name; + FFDiskVolumeType type; + + uint64_t bytesUsed; + uint64_t bytesFree; + uint64_t bytesAvailable; + uint64_t bytesTotal; + + uint32_t filesUsed; + uint32_t filesTotal; + + uint64_t createTime; +} FFDisk; + +/** + * Returns a List of FFDisk, sorted alphabetically by mountpoint. + * If error is not set, disks contains at least one disk. + */ +const char* ffDetectDisks(FFDiskOptions* options, FFlist* disks /* list of FFDisk */); + +const char* ffDetectDisksImpl(FFDiskOptions* options, FFlist* disks); + +#ifndef _WIN32 +bool ffDiskMatchesFolderPatterns(FFstrbuf* folders, const char* path, char separator); +#endif -- cgit v1.2.3