首页
社区
课程
招聘
[求助]RtlCompareMemory找不到????
发表于: 2008-3-23 15:39 7258

[求助]RtlCompareMemory找不到????

2008-3-23 15:39
7258
我在RADASM里用  RtlCompareMemory函数提示找不到,应该引用什么啊,还有就是我查MSDN,也找不到这个函数呢,另外就是REP CMPSB应该怎么使用啊?谢谢各位老大

[课程]Android-CTF解题方法汇总!

收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 1852
活跃值: (504)
能力值: (RANK:1010 )
在线值:
发帖
回帖
粉丝
2
具体见DDK
RtlCompareMemory
RtlCompareMemory compares blocks of memory and returns the number of bytes that are equivalent.

SIZE_T
RtlCompareMemory(
IN CONST VOID *Source1,
IN CONST VOID *Source2,
IN SIZE_T Length
);
Parameters
Source1
Points to a block of memory to compare.
Source2
Points to a block of memory to compare.
Length
Specifies the number of bytes to be compared.
Include
wdm.h or ntddk.h

Return Value
RtlCompareMemory returns the number of bytes that compare as equal. If all bytes compare as equal, the input Length is returned.

Comments
Callers of RtlCompareMemory can be running at any IRQL if both blocks of memory are resident.
2008-3-23 20:44
0
游客
登录 | 注册 方可回帖
返回
//