TDiskTable

From Ultibo.org
Jump to: navigation, search

Return to Unit Filesystem


Description


To be documented

Class definitions



TDiskTable = class(TListObject)

Note: A disk table such as a FAT or MFT table.
 
constructor Create(ALocalLock:TMutexHandle);  
destructor Destroy; override;  
private
FTableNo:LongWord;  
protected
FLocalLock:TMutexHandle;  
 
function AcquireLock:Boolean;  
function ReleaseLock:Boolean;  
public
property TableNo:LongWord read FTableNo write FTableNo;  


Function declarations



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


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


function TDiskTable.AcquireLock:Boolean;
Description: To be documented
Note None documented


function TDiskTable.ReleaseLock:Boolean;
Description: To be documented
Note None documented


Return to Unit Reference