2 回答

小怪獸愛吃肉
TA貢獻(xiàn)1852條經(jīng)驗(yàn) 獲得超1個(gè)贊
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.
就是說這個(gè)函數(shù)實(shí)現(xiàn)的功能是將Destination制定的內(nèi)存地址開始,Length字節(jié)長度的內(nèi)存數(shù)據(jù)清零。
添加回答
舉報(bào)
0/150
提交
取消