| ESBClear Procedure | 
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 OperationsImplementation
 
| procedure ESBClear (var Dest; const Size: LongWord);
begin
     FillChar (Dest, Size, 0);
End; | 
|  |