Return to Unit Filesystem
Description
To be documented
Class definitions
[Expand]
TRawHandle = class(TListObject)
constructor Create;
|
|
destructor Destroy; override;
|
|
private
|
FLock:TSynchronizerHandle;
|
|
public
|
Device:TDiskDevice;
|
|
Partition:TDiskPartition;
|
|
Volume:TDiskVolume;
|
|
Drive:TDiskDrive;
|
|
|
OpenMode:Integer;
|
|
ShareMode:Integer;
|
|
|
Size:Int64;
|
|
Position:Int64;
|
|
|
Handle:THandle;
|
|
Count:Integer;
|
|
|
function ReaderLock:Boolean;
|
|
function ReaderUnlock:Boolean;
|
|
function ReaderConvert:Boolean;
|
|
function WriterLock:Boolean;
|
|
function WriterUnlock:Boolean;
|
|
function WriterConvert:Boolean;
|
|
Function declarations
[Expand]
constructor TRawHandle.Create;
Description: To be documented
[Expand]
destructor TRawHandle.Destroy;
Description: To be documented
[Expand]
function TRawHandle.ReaderLock:Boolean;
Description: To be documented
[Expand]
function TRawHandle.ReaderUnlock:Boolean;
Description: To be documented
[Expand]
function TRawHandle.ReaderConvert:Boolean;
Description: Convert a Reader lock to a Writer lock
[Expand]
function TRawHandle.WriterLock:Boolean;
Description: To be documented
[Expand]
function TRawHandle.WriterUnlock:Boolean;
Description: To be documented
[Expand]
function TRawHandle.WriterConvert:Boolean;
Description: Convert a Writer lock to a Reader lock
Return to Unit Reference