阅读:1244回复:1
驱动开发中有没有类似memset的函数?
用RtlCopyMemory 有时太麻烦。
谢谢。 |
|
沙发#
发布于:2008-07-10 11:35
RtlFillMemory
The RtlFillMemory routine fills a caller-supplied buffer with the given character. VOID RtlFillMemory( IN VOID UNALIGNED *Destination, IN SIZE_T Length, IN UCHAR Fill ); Parameters Destination Pointer to the memory to be filled. Length Specifies the number of bytes to be filled. Fill Specifies the value to fill the memory. |
|
|