Difference between revisions of "THTTPBuffer"

From Ultibo.org
Jump to: navigation, search
(Created page with "Return to Unit HTTP __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-collapsible mw-collapse...")
 
(No difference)

Latest revision as of 06:25, 17 May 2018

Return to Unit HTTP


Description


To be documented

Class definitions



[Expand]

THTTPBuffer = class(TObject)


Function declarations



[Expand]
constructor THTTPBuffer.Create(ASize:LongWord);
Description: To be documented


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


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


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


[Expand]
function THTTPBuffer.GetCount:LongWord;
Description: To be documented


[Expand]
procedure THTTPBuffer.Clear;
Description: To be documented


[Expand]
function THTTPBuffer.ReadData:Char;
Description: To be documented


[Expand]
function THTTPBuffer.WriteData(AChar:Char):Boolean;
Description: To be documented


[Expand]
function THTTPBuffer.ReadLock(var ASize:LongWord):Pointer;
Description: To be documented


[Expand]
function THTTPBuffer.ReadUnlock(ACount:LongWord):Boolean;
Description: To be documented


[Expand]
function THTTPBuffer.WriteLock(var ASize:LongWord):Pointer;
Description: Lock the buffer and return a pointer to the next write


[Expand]
function THTTPBuffer.WriteUnlock(ACount:LongWord):Boolean;
Description: To be documented


Return to Unit Reference