Return to Unit Filesystem
Description
To be documented
Class definitions
[Expand]
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
[Expand]
constructor TDiskTable.Create(ALocalLock:TMutexHandle);
Description: To be documented
[Expand]
destructor TDiskTable.Destroy;
Description: To be documented
[Expand]
function TDiskTable.AcquireLock:Boolean;
Description: To be documented
[Expand]
function TDiskTable.ReleaseLock:Boolean;
Description: To be documented
Return to Unit Reference