Return to Unit CDFS
Description
To be documented
Class definitions
[Expand]
TCDFSDiskPath = class(TListObject)
Note: Represents a CDFS path table entry.
|
|
constructor Create(ALocalLock:TMutexHandle);
|
|
destructor Destroy; override;
|
|
private
|
FLocalLock:TMutexHandle;
|
|
|
FName:String;
|
|
FHash:LongWord;
|
|
|
FPathNumber:Word;
|
|
FPathOffset:LongWord;
|
|
FStartCluster:LongWord;
|
|
|
FExtendedSize:Byte;
|
Extended Attribute Record Length
|
FParentNumber:Word;
|
Parent Directory Number
|
|
FParent:TCDFSDiskPath;
|
|
|
function AcquireLock:Boolean;
|
|
function ReleaseLock:Boolean;
|
|
|
function GetName:String;
|
|
procedure SetName(const AName:String);
|
|
public
|
property Name:String read GetName write SetName;
|
|
property Hash:LongWord read FHash;
|
|
|
property PathNumber:Word read FPathNumber write FPathNumber;
|
|
property PathOffset:LongWord read FPathOffset write FPathOffset;
|
|
property StartCluster:LongWord read FStartCluster write FStartCluster;
|
|
|
property ExtendedSize:Byte read FExtendedSize write FExtendedSize;
|
|
property FirstBlock:LongWord read FStartCluster write FStartCluster;
|
|
property ParentNumber:Word read FParentNumber write FParentNumber;
|
|
|
property Parent:TCDFSDiskPath read FParent write FParent;
|
|
|
function PathIdentifier:String;
|
|
function PathIdentifierSize(AUnicode:Boolean):Byte;
|
|
function PathRecordSize(AUnicode:Boolean):Byte;
|
|
Function declarations
[Expand]
constructor TCDFSDiskPath.Create(ALocalLock:TMutexHandle);
Description: To be documented
[Expand]
destructor TCDFSDiskPath.Destroy;
Description: To be documented
[Expand]
function TCDFSDiskPath.AcquireLock:Boolean;
Description: To be documented
[Expand]
function TCDFSDiskPath.ReleaseLock:Boolean;
Description: To be documented
[Expand]
function TCDFSDiskPath.GetName:String;
Description: To be documented
[Expand]
procedure TCDFSDiskPath.SetName(const AName:String);
Description: To be documented
[Expand]
function TCDFSDiskPath.PathIdentifier:String;
Description: To be documented
[Expand]
function TCDFSDiskPath.PathIdentifierSize(AUnicode:Boolean):Byte;
Description: To be documented
[Expand]
function TCDFSDiskPath.PathRecordSize(AUnicode:Boolean):Byte;
Description: To be documented
Return to Unit Reference