From ceaf4c232e20a383000f5a890cc25e845b3a57d6 Mon Sep 17 00:00:00 2001 From: Mike Fleetwood Date: Sun, 5 Apr 2020 10:34:20 +0100 Subject: [PATCH] Briefly comment STAT_* enumerators --- include/Partition.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/include/Partition.h b/include/Partition.h index faa0fc44..f1479e4e 100644 --- a/include/Partition.h +++ b/include/Partition.h @@ -40,12 +40,14 @@ enum PartitionType { TYPE_UNPARTITIONED = 4 // Unpartitioned whole drive }; + enum PartitionStatus { - STAT_REAL = 0, - STAT_NEW = 1, - STAT_COPY = 2 + STAT_REAL = 0, // All other cases. Read from drive or composed by all other operations + STAT_NEW = 1, // Composed by the Create New dialog, but not yet applied + STAT_COPY = 2 // Composed by the Paste into New dialog, but not yet applied }; + enum PartitionAlignment { ALIGN_CYLINDER = 0, //Align to nearest cylinder ALIGN_MEBIBYTE = 1, //Align to nearest mebibyte