这个#define可以这样定义么#define RtlZeroMemory(Destination,Length) memset((Destination),0,(Length))这样是不是把memset((Destination),0,(Length))这个函数定义成RtlZeroMemory(Destination,Length)?这个是什么用法 变量数都不

来源:学生作业帮助网 编辑:六六作业网 时间:2024/05/12 04:55:38
这个#define可以这样定义么#defineRtlZeroMemory(Destination,Length)memset((Destination),0,(Length))这样是不是把memset

这个#define可以这样定义么#define RtlZeroMemory(Destination,Length) memset((Destination),0,(Length))这样是不是把memset((Destination),0,(Length))这个函数定义成RtlZeroMemory(Destination,Length)?这个是什么用法 变量数都不
这个#define可以这样定义么
#define RtlZeroMemory(Destination,Length) memset((Destination),0,(Length))
这样是不是把memset((Destination),0,(Length))这个函数定义成RtlZeroMemory(Destination,Length)?
这个是什么用法 变量数都不一样可以这样定义的么

这个#define可以这样定义么#define RtlZeroMemory(Destination,Length) memset((Destination),0,(Length))这样是不是把memset((Destination),0,(Length))这个函数定义成RtlZeroMemory(Destination,Length)?这个是什么用法 变量数都不
可以这样定义.

这是字符串替代,意思是:
下面程序中若有 RtlZeroMemory(Destination,Length)
则用 memset((Destination),0,(Length)) 替代,遇到多少个,就替代多少个.
替代以后再编译.

Destination 意思是目的地,Length 是长度.
memset 是 函数,给 Destination变量 赋 Length个字节 的 0.