On Wed, Nov 18, 2009 at 6:58 PM, Jonas Maebe <jonas.ma...@elis.ugent.be> wrote:
>
> What is the problem with fillchar? (other than that it prints a wrong hint in 
> some cases.
>

procedure ZeroMemory(Destination: Pointer; Length: DWORD);
begin
  FillChar(Destination^, Length, 0);
end;

There is no var in ZeroMemory so no hint i guess.

-- 
Zaher Dirkey
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to