ESBClear Procedure
Fills given structure with specified number of 0 values, effectively clearing it.

Unit
QESBPCSSystem

Declaration
Procedure ESBClear(var Dest; const Size: LongWord);

Description
Uses fast dword moves.

Parameters
Dest Object to clear.
Size Number of bytes to clear starting from the beginning of the object.

Category
Memory Operations

Implementation

procedure ESBClear (var Dest; const Size: LongWord);
begin
     FillChar (Dest, Size, 0);
End;


HTML generated by Time2HELP
http://www.time2help.com