plZeroMemory

    The plZeroMemory function overwrites selected number of bytes of a buffer with 00h bytes.

plZeroMemory(
   DWORD  plAddress,       	 // Address of buffer
   DWORD  plLenght		 // Size of buffer    
);


Parameters

plAddress

   This is the pointer to the buffer, which the function will overwrite with 00h bytes.

 

plLenght

    Number of bytes to overwrite.

 

Return Value

    If the function succeeds, the return value is TRUE.

Examples

 
.data
     strBuffer db "Tralalalalalalalalalalalla",0
 
.code 
     invoke lstrlen,addr strBuffer
     lea ebx,offset strBuffer
 
     invoke plZeroMemory,ebx,eax
 

See Also

 

Pumqara <programs@mail.bg> 2004. All rights reserved.