Return to Unit FATFS
Description
To be documented
Class definitions
[Expand]
TFATDiskBlock = class(TDiskBlock)
Note: Represents a block of FAT entries.
|
|
constructor Create(ALocalLock:TMutexHandle);
|
|
destructor Destroy; override;
|
|
private
|
FBlockBuffer:Pointer;
|
|
FBlockSector:LongWord;
|
Relative to the StartSector in Table
|
FSectorCount:LongWord;
|
|
public
|
property BlockBuffer:Pointer read FBlockBuffer write FBlockBuffer;
|
|
property BlockSector:LongWord read FBlockSector write FBlockSector;
|
|
property SectorCount:LongWord read FSectorCount write FSectorCount;
|
|
Function declarations
[Expand]
constructor TFATDiskBlock.Create(ALocalLock:TMutexHandle);
Description: To be documented
[Expand]
destructor TFATDiskBlock.Destroy;
Description: To be documented
Return to Unit Reference