Return to Unit NTFSClass
Description
To be documented
Class definitions
[Expand]
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
[Expand]
constructor TNTFSDiskBlock.Create(ALocalLock:TMutexHandle);
Description: To be documented
[Expand]
destructor TNTFSDiskBlock.Destroy;
Description: To be documented
Return to Unit Reference