TNTFSDiskTable

From Ultibo.org
Revision as of 05:37, 24 May 2018 by Ultibo (Talk | contribs) (Created page with "Return to Unit NTFSClass __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-collapsible m...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Return to Unit NTFSClass


Description


To be documented

Class definitions



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



constructor TNTFSDiskTable.Create(ALocalLock:TMutexHandle);
Description: To be documented
Note None documented


destructor TNTFSDiskTable.Destroy;
Description: To be documented
Note None documented


Return to Unit Reference