|
FORUM MESSAGE
|
|
You are reading a General forum message.
Re: zero all data
Author: Darren Dwyer
Date Posted: 2005-02-24 17:11:22
Hi Dwight,
the only thing I can think of is using ZeroMemory() to clear your arrays, etc.
where ZeroMemory( char* memory_location, uint num_chars ) is the params.
ie.
char* mem = new char[256];
ZeroMemory( mem, 256 );
Hope this helps,
Darren Dwyer,
http://bcb-tools.com
REPLY TO THIS MESSAGE?
Top
You can post a reply to this General message using the form below:
|
|