Added resetting and trim to the entries

This commit is contained in:
2024-02-17 02:46:21 +01:00
parent 799a362074
commit 5073ba3834
5 changed files with 80 additions and 9 deletions

View File

@@ -43,6 +43,11 @@ Result trim_disk(const char* path);
/// @return The result of the operation.
Result rebase_disk(const char* path, const char* backing_disk);
/// @brief Resets a disk to its original state.
/// @param path The path to the disk to reset.
/// @return The result of the operation.
Result reset_disk(const char* path);
/// @brief Gathers information about a disk.
/// @param path The path to the disk to gather information about.
/// @param out_info The information about the disk.