小怪兽爱吃肉
The ZeroMemory function fills a block of memory with zeros.VOID ZeroMemory(PVOID Destination, // memory blockSIZE_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.就是说这个函数实现的功能是将Destination制定的内存地址开始,Length字节长度的内存数据清零。