TFATDiskEntry

From Ultibo.org
Jump to: navigation, search

Return to Unit FATFS


Description


To be documented

Class definitions



TFATDiskEntry = class(TDiskEntry)

Note: Represents a FAT directory entry.
 
private
FEntryCount:Byte; Always 1 if short name only
FNameOffset:LongWord; Same as EntryOffset if short name only
FNameSector:LongWord; Same as EntrySector if short name only
FEntryOffset:LongWord;  
FEntrySector:LongWord;  
FStartCluster:LongWord;  
public
property EntryCount:Byte read FEntryCount write FEntryCount;  
property NameOffset:LongWord read FNameOffset write FNameOffset;  
property NameSector:LongWord read FNameSector write FNameSector;  
property EntryOffset:LongWord read FEntryOffset write FEntryOffset;  
property EntrySector:LongWord read FEntrySector write FEntrySector;  
property StartCluster:LongWord read FStartCluster write FStartCluster;  
 
property StartSector:LongWord read FStartCluster write FStartCluster;  


Function declarations


None defined


Return to Unit Reference