Return to Unit NTFSClass
Description
To be documented
Class definitions
[Expand]
TNTFSExtended = class(TListObject)
Note: Data of attribute $EA
|
|
constructor Create(ALocalLock:TMutexHandle);
|
|
destructor Destroy; override;
|
|
private
|
FLocalLock:TMutexHandle;
|
|
|
FExtendedOffset:LongWord;
|
Offset to next Extended Attribute (Offset to next EA is the size of this EA)
|
FExtendedFlags:Byte;
|
Flags
|
FExtendedName:String;
|
Name Note: No offset so always in the same location (Not Unicode)
|
FExtendedData:Pointer;
|
Value
|
FExtendedDataSize:Word;
|
Value Length
|
|
FExtendedHash:LongWord;
|
|
|
function AcquireLock:Boolean;
|
|
function ReleaseLock:Boolean;
|
|
|
function GetExtendedName:String;
|
|
procedure SetExtendedName(const AExtendedName:String);
|
|
procedure SetExtendedDataSize(ASize:Word);
|
|
public
|
property ExtendedOffset:LongWord read FExtendedOffset write FExtendedOffset;
|
|
property ExtendedFlags:Byte read FExtendedFlags write FExtendedFlags;
|
|
property ExtendedName:String read GetExtendedName write SetExtendedName;
|
|
property ExtendedData:Pointer read FExtendedData;
|
|
property ExtendedDataSize:Word read FExtendedDataSize write SetExtendedDataSize;
|
|
|
property ExtendedHash:LongWord read FExtendedHash;
|
|
|
function ExtendedSize:LongWord;
|
|
|
function ExtendedNameSize:Word;
|
|
function ExtendedNameLength:Byte;
|
Name Length
|
|
function ReadExtended(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word):Boolean;
|
|
function WriteExtended(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word):Boolean;
|
|
Function declarations
[Expand]
constructor TNTFSExtended.Create(ALocalLock:TMutexHandle);
Description: To be documented
[Expand]
destructor TNTFSExtended.Destroy;
Description: To be documented
[Expand]
function TNTFSExtended.AcquireLock:Boolean;
Description: To be documented
[Expand]
function TNTFSExtended.ReleaseLock:Boolean;
Description: To be documented
[Expand]
function TNTFSExtended.GetExtendedName:String;
Description: To be documented
[Expand]
procedure TNTFSExtended.SetExtendedName(const AExtendedName:String);
Description: To be documented
[Expand]
procedure TNTFSExtended.SetExtendedDataSize(ASize:Word);
Description: To be documented
[Expand]
function TNTFSExtended.ExtendedSize:LongWord;
Description: To be documented
[Expand]
function TNTFSExtended.ExtendedNameSize:Word;
Description: To be documented
[Expand]
function TNTFSExtended.ExtendedNameLength:Byte;
Description: To be documented
[Expand]
function TNTFSExtended.ReadExtended(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word):Boolean;
Description: Read the extended attribute from the supplied buffer at the supplied offset
[Expand]
function TNTFSExtended.WriteExtended(ABuffer:Pointer; var AOffset,ASize:LongWord; AVersion:Word):Boolean;
Description: Write the extended attribute to the supplied buffer at the supplied offset
Return to Unit Reference