Return to Unit Shell
Description
To be documented
Class definitions
[Expand]
TShellAlias = class(TListObject)
public
|
constructor Create;
|
|
destructor Destroy; override;
|
|
private
|
FLock:TCriticalSectionHandle;
|
|
|
FName:String;
|
|
FHash:LongWord;
|
|
FFlags:LongWord;
|
|
|
function GetName:String;
|
|
procedure SetName(const AName:String);
|
|
procedure SetFlags(AFlags:LongWord);
|
|
protected
|
function AcquireLock:Boolean;
|
|
function ReleaseLock:Boolean;
|
|
public
|
property Name:String read GetName write SetName;
|
|
property Hash:LongWord read FHash;
|
|
property Flags:LongWord read FFlags write SetFlags;
|
|
Function declarations
[Expand]
constructor TShellAlias.Create;
Description: To be documented
[Expand]
destructor TShellAlias.Destroy;
Description: To be documented
[Expand]
function TShellAlias.GetName:String;
Description: To be documented
[Expand]
procedure TShellAlias.SetName(const AName:String);
Description: To be documented
[Expand]
procedure TShellAlias.SetFlags(AFlags:LongWord);
Description: To be documented
[Expand]
function TShellAlias.AcquireLock:Boolean;
Description: To be documented
[Expand]
function TShellAlias.ReleaseLock:Boolean;
Description: To be documented
Return to Unit Reference