能介紹下它的作用與參數的意義嗎
2 回答

小怪獸愛吃肉
TA貢獻1852條經驗 獲得超1個贊
The ZeroMemory function fills a block of memory with zeros.
VOID ZeroMemory(
PVOID Destination, // memory block
SIZE_T Length // size of memory block
);
Parameters
Destination
[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字節長度的內存數據清零。
添加回答
舉報
0/150
提交
取消