TNTFSDiskBlock

From Ultibo.org
Jump to: navigation, search

Return to Unit NTFSClass


Description


To be documented

Class definitions



TNTFSDiskBlock = class(TDiskBlock)

Note: Represents a block of $Bitmap entries
 
constructor Create(ALocalLock:TMutexHandle);  
destructor Destroy; override;  
private
FBlockCount:LongWord; Number of cluster entries in this block (Bits in the bitmap)
FBlockBuffer:Pointer;  
FBlockCluster:Int64; First cluster represented by this block (BlockNo represents the VCN of the block)
public
property BlockCount:LongWord read FBlockCount write FBlockCount;  
property BlockBuffer:Pointer read FBlockBuffer write FBlockBuffer;  
property BlockCluster:Int64 read FBlockCluster write FBlockCluster;  


Function declarations



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


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


Return to Unit Reference