Return to Unit CDFS
Description
To be documented
Class definitions
[Expand]
TCDFSDiskBlock = class(TDiskBlock)
Note: Represents a block of clusters.
|
|
constructor Create(ALocalLock:TMutexHandle);
|
|
destructor Destroy; override;
|
|
private
|
FBlockCount:LongWord;
|
Number of cluster entries in this block
|
FBlockBuffer:Pointer;
|
|
FBlockCluster:LongWord;
|
First cluster represented by this block
|
public
|
property BlockCount:LongWord read FBlockCount write FBlockCount;
|
|
property BlockBuffer:Pointer read FBlockBuffer write FBlockBuffer;
|
|
property BlockCluster:LongWord read FBlockCluster write FBlockCluster;
|
|
Function declarations
[Expand]
constructor TCDFSDiskBlock.Create(ALocalLock:TMutexHandle);
Description: To be documented
[Expand]
destructor TCDFSDiskBlock.Destroy;
Description: To be documented
Return to Unit Reference