Difference between revisions of "THandleStreamEx"
From Ultibo.org
(Created page with "Return to Unit UltiboClasses __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-colla...") |
|||
Line 23: | Line 23: | ||
|colspan="2"| | |colspan="2"| | ||
|- | |- | ||
− | | <code>constructor Create(AHandle: | + | | <code>constructor Create(AHandle:THandle);</code> |
| style="width: 50%;"| | | style="width: 50%;"| | ||
|- | |- | ||
|colspan="2"|<div style="font-family: monospace,courier;">'''private'''</div> | |colspan="2"|<div style="font-family: monospace,courier;">'''private'''</div> | ||
|- | |- | ||
− | | <code>FHandle: | + | | <code>FHandle:THandle;</code> |
| | | | ||
|- | |- | ||
Line 53: | Line 53: | ||
| | | | ||
|- | |- | ||
− | | <code>property Handle: | + | | <code>property Handle:THandle read FHandle;</code> |
| | | | ||
|- | |- | ||
Line 65: | Line 65: | ||
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
− | <pre style="border: 0; padding-bottom:0px;">constructor THandleStreamEx.Create(AHandle: | + | <pre style="border: 0; padding-bottom:0px;">constructor THandleStreamEx.Create(AHandle:THandle);</pre> |
<div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> | ||
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> |
Latest revision as of 03:57, 22 January 2025
Return to Unit UltiboClasses
Description
To be documented
Class definitions
THandleStreamEx = class(TStreamEx)
Note: A 64bit capable Handle Stream class | |
constructor Create(AHandle:THandle);
|
|
private
| |
FHandle:THandle;
|
|
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:THandle read FHandle;
|
Function declarations
constructor THandleStreamEx.Create(AHandle:THandle);
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