Difference between revisions of "TFATDiskBlock"

From Ultibo.org
Jump to: navigation, search
(Created page with "Return to Unit FATFS __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-collapsible mw-collap...")
 
(No difference)

Latest revision as of 04:19, 3 May 2018

Return to Unit FATFS


Description


To be documented

Class definitions



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



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


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


Return to Unit Reference