Return to Unit NTFSClass
Description
To be documented
Class definitions
[Expand]
TNTFSDiskTable = class(TDiskTable)
Note: Respresents the $Mft and $MftMirr
|
|
constructor Create(ALocalLock:TMutexHandle);
|
|
destructor Destroy; override;
|
|
private
|
FStartSector:Int64;
|
Absolute starting sector of this table
|
FStartCluster:Int64;
|
Absolute starting cluster of this table
|
|
FEntry:TNTFSDiskEntry;
|
|
public
|
property StartSector:Int64 read FStartSector write FStartSector;
|
|
property StartCluster:Int64 read FStartCluster write FStartCluster;
|
|
|
property Entry:TNTFSDiskEntry read FEntry write FEntry;
|
|
Function declarations
[Expand]
constructor TNTFSDiskTable.Create(ALocalLock:TMutexHandle);
Description: To be documented
[Expand]
destructor TNTFSDiskTable.Destroy;
Description: To be documented
Return to Unit Reference