Difference between revisions of "TFATDiskEntry"
From Ultibo.org
								
												
				 (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:20, 3 May 2018
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