summaryrefslogtreecommitdiff
path: root/src/drive.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/drive.h')
-rw-r--r--src/drive.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/drive.h b/src/drive.h
index cd8078b..e943ef1 100644
--- a/src/drive.h
+++ b/src/drive.h
@@ -36,15 +36,15 @@ struct _drivelocks;
typedef struct _partitioninfo
{
- uint32 first; /* The first sector (in sectors) */
- uint32 end; /* The end sector (in sectors) */
- uint32 mft; /* Offset into the MFT (in sectors) */
- byte cluster; /* Cluster size (in sectors) */
- int device; /* A handle to an open device */
-
- /* Some other context stuff about the drive */
- struct _drivelocks* locks;
- struct _ntfsx_mftmap* mftmap;
+ uint64 first; /* The first sector (in sectors) */
+ uint64 end; /* The end sector (in sectors) */
+ uint64 mft; /* Offset into the MFT (in sectors) */
+ byte cluster; /* Cluster size (in sectors) */
+ int device; /* A handle to an open device */
+
+ /* Some other context stuff about the drive */
+ struct _drivelocks* locks;
+ struct _ntfsx_mftmap* mftmap;
}
partitioninfo;