如何判断API函数RegSetValueEx获得的参数内容!(50分)

  • 主题发起人 主题发起人 snail1024
  • 开始时间 开始时间
S

snail1024

Unregistered / Unconfirmed
GUEST, unregistred user!
不好意思题目可能没表达清楚,我是想说:在RegSetValueEx这个函数里边如何判断现在打开的是HKEY_CURRENT_USER/Software/Microsoft/Internet Explorer/Main这个键?<br><br>该函数原形为:RegSetValueEx(<br>hKey: HKEY; &nbsp; &nbsp; &nbsp;{handle to parent key}<br>lpValueName: PChar; &nbsp; &nbsp;{name of value to save}<br>Reserved: DWORD; &nbsp; &nbsp;{reserved}<br>dwType: DWORD; &nbsp; &nbsp;{type of value to save}<br>lpData: Pointer; &nbsp; &nbsp; &nbsp;{value to save}<br>cbData: DWORD &nbsp; &nbsp; &nbsp;{size of data}<br>): Longint; &nbsp; &nbsp; &nbsp; {returns an error code}
 
挂钩openkey这个函数,就可知道,RegSetValue不可能知道
 
这个需要hook一下api函数了。
 
多人接受答案了。
 
后退
顶部