请教ZeroMemory()函数
的有关信息介绍如下:The ZeroMemory function fills a block of memory with zeros. VOID ZeroMemory( PVOID Destination, // memory block SIZE_T Length // size of memory block);ParametersDestination [in] Pointer to the starting address of the block of memory to fill with zeros. Length [in] Size, in bytes, of the block of memory to fill with zeros. 上面是MSDN中的解释,就是说这个函数实现的功能是将Destination制定的内存地址开始,Length字节长度的内存数据清零。