TPOP3Buffer
From Ultibo.org
Return to Unit POP3
Description
To be documented
Class definitions
TPOP3Buffer = class(TObject)
public
| |
constructor Create(ASize:LongWord);
|
|
destructor Destroy; override;
|
|
private
| |
FLock:TCriticalSectionHandle;
|
|
FData:Pointer;
|
|
FSize:LongWord;
|
|
FCount:LongWord;
|
|
FStart:LongWord;
|
|
function AcquireLock:Boolean;
|
|
function ReleaseLock:Boolean;
|
|
function GetCount:LongWord;
|
|
public
| |
property Count:LongWord read GetCount;
|
|
function ReadData:Char;
|
|
function WriteData(AChar:Char):Boolean;
|
|
function WriteLock(var ASize:LongWord):Pointer;
|
|
function WriteUnlock(ACount:LongWord):Boolean;
|
Function declarations
constructor TPOP3Buffer.Create(ASize:LongWord);
Description: To be documented
Note | None documented |
---|
destructor TPOP3Buffer.Destroy;
Description: To be documented
Note | None documented |
---|
function TPOP3Buffer.AcquireLock:Boolean;
Description: To be documented
Note | None documented |
---|
function TPOP3Buffer.ReleaseLock:Boolean;
Description: To be documented
Note | None documented |
---|
function TPOP3Buffer.GetCount:LongWord;
Description: To be documented
Note | None documented |
---|
function TPOP3Buffer.ReadData:Char;
Description: To be documented
Note | None documented |
---|
function TPOP3Buffer.WriteData(AChar:Char):Boolean;
Description: To be documented
Note | None documented |
---|
function TPOP3Buffer.WriteLock(var ASize:LongWord):Pointer;
Description: Lock the buffer and return a pointer to the next write
Note | None documented |
---|
function TPOP3Buffer.WriteUnlock(ACount:LongWord):Boolean;
Description: To be documented
Note | None documented |
---|
Return to Unit Reference