THandleStreamEx

From Ultibo.org
Jump to: navigation, search

Return to Unit UltiboClasses


Description


To be documented

Class definitions



THandleStreamEx = class(TStreamEx)

Note: A 64bit capable Handle Stream class
 
constructor Create(AHandle:Integer);  
private
FHandle:Integer;  
protected
procedure SetSize(NewSize:LongInt); override;  
procedure SetSizeEx(const NewSize:Int64); override;  
public
function Read(var Buffer; Count:LongInt):LongInt; override;  
function Write(const Buffer; Count:LongInt):LongInt; override;  
function Seek(Offset:LongInt; Origin:Word):LongInt; override;  
function SeekEx(const Offset:Int64; Origin:Word):Int64; override;  
property Handle:Integer read FHandle;  


Function declarations



constructor THandleStreamEx.Create(AHandle:Integer);
Description: To be documented
Note None documented


procedure THandleStreamEx.SetSize(NewSize:LongInt);
Description: To be documented
Note None documented


procedure THandleStreamEx.SetSizeEx(const NewSize:Int64);
Description: To be documented
Note None documented


function THandleStreamEx.Read(var Buffer; Count:Longint):Longint;
Description: To be documented
Note None documented


function THandleStreamEx.Write(const Buffer; Count:Longint):Longint;
Description: To be documented
Note None documented


function THandleStreamEx.Seek(Offset:Longint; Origin:Word):Longint;
Description: To be documented
Note None documented


function THandleStreamEx.SeekEx(const Offset:Int64; Origin:Word):Int64;
Description: To be documented
Note None documented


Return to Unit Reference