TDiskDevice

From Ultibo.org
Revision as of 04:56, 29 January 2025 by Ultibo (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Return to Unit Filesystem


Description


To be documented

Class definitions



[Expand]

TDiskDevice = class(TListObject)


Function declarations



[Expand]
constructor TDiskDevice.Create(ADriver:TFileSysDriver; AController:TDiskController; AImage:TDiskImage; AStorage:PStorageDevice; ADeviceNo:Integer; const AIdentifier:String);
Description: To be documented


[Expand]
destructor TDiskDevice.Destroy;
Description: To be documented


[Expand]
function TDiskDevice.AcquireLock:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.ReleaseLock:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.GetName:String;
Description: To be documented


[Expand]
function TDiskDevice.GetIdentifier:String;
Description: To be documented


[Expand]
function TDiskDevice.GetInformation:String;
Description: To be documented


[Expand]
function TDiskDevice.GetManufacturer:String;
Description: To be documented


[Expand]
function TDiskDevice.GetProduct:String;
Description: To be documented


[Expand]
function TDiskDevice.GetSerialNumber:String;
Description: To be documented


[Expand]
function TDiskDevice.GetHostBus:String;
Description: To be documented


[Expand]
function TDiskDevice.GetInterfaceType:String;
Description: To be documented


[Expand]
function TDiskDevice.GetFreeSectors:Int64;
Description: Get the total Count of Unused Sectors on the Device


[Expand]
function TDiskDevice.GetAvailableSectors:Int64;
Description: Get the largest Count of Unused Sectors on the Device


[Expand]
function TDiskDevice.GetAvailableBlock(var AStart,ACount:Int64):Boolean;
Description: Get the Start and Count of largest Unused Sectors on the Device


[Expand]
function TDiskDevice.GetDiskSignature:LongWord;
Description: To be documented


[Expand]
procedure TDiskDevice.SetDiskSignature(ADiskSignature:LongWord);
Description: To be documented


[Expand]
function TDiskDevice.ReaderLock:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.ReaderUnlock:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.WriterLock:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.WriterUnlock:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.DeviceInit:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.LocatePartitions:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.LocateVolumes:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.CreateVolume:TDiskVolume;
Description: To be documented


[Expand]
function TDiskDevice.DeleteVolume(AVolume:TDiskVolume):Boolean;
Description: To be documented


[Expand]
function TDiskDevice.CreatePartition(AParent:TDiskPartition; APartitionId:Byte; ACount:LongWord; AActive:Boolean):Boolean;
Description: To be documented


[Expand]
function TDiskDevice.DeletePartition(APartition:TDiskPartition):Boolean;
Description: To be documented


[Expand]
function TDiskDevice.ModifyPartition(APartition:TDiskPartition; APartitionId:Byte):Boolean;
Description: To be documented


[Expand]
function TDiskDevice.ActivatePartition(APartition:TDiskPartition; AActive:Boolean):Boolean;
Description: To be documented


[Expand]
function TDiskDevice.ShrinkPartition(APartition:TDiskPartition; const AStart,ASize:Int64):Boolean;
Description: To be documented


[Expand]
function TDiskDevice.ExpandPartition(APartition:TDiskPartition; const AStart,ASize:Int64):Boolean;
Description: To be documented


[Expand]
function TDiskDevice.Reset:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.LockMedia:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.UnlockMedia:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.EjectMedia:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.MediaReady:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.MediaChanged:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.MediaLocked:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.InsertDevice:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.EjectDevice:Boolean;
Description: To be documented


[Expand]
function TDiskDevice.OpenDevice(AMode:Integer):THandle;
Description: To be documented


[Expand]
procedure TDiskDevice.CloseDevice(AHandle:THandle);
Description: To be documented


[Expand]
function TDiskDevice.ReadDevice(AHandle:THandle; var ABuffer; ACount:Integer):Integer;
Description: To be documented


[Expand]
function TDiskDevice.WriteDevice(AHandle:THandle; const ABuffer; ACount:Integer):Integer;
Description: To be documented


[Expand]
function TDiskDevice.EraseDevice(AHandle:THandle; ACount:Integer):Integer;
Description: To be documented


[Expand]
function TDiskDevice.SeekDevice(AHandle:THandle; const AOffset:Int64; AOrigin:Integer):Int64;
Description: To be documented


Return to Unit Reference