需要:WinAPI 调用记录器
有一个“API Monitor”程序,但似乎已停止使用。在我的系统上不起作用。 有没有这样的工具可以在 Windows 7 x64 上运行? 我需要记录选定组中的 API 调用,最好记录参数值。
There was an "API Monitor" program, but it seems discontinued. Doesn't work on my system.
Is there any such tool, which can work on Windows 7 x64?
I need to log API calls from a selected set, better when parameter values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我使用 http://www.rohitab.com/apimonitor 上的 API 监视器工具。它并没有被放弃,作者似乎正在发布定期更新,包括去年的一些更新。我发现它相对容易学习,并使用它来发现我正在研究的 Windows 的某些组件进行的 API 调用以及其他调试任务。
I use the API Monitor tool at http://www.rohitab.com/apimonitor. It's not abandoned, the author seems to be releasing regular updates including some from the past year. I found it relatively easy to learn, and have used it to discover API calls made by some components of Windows that I was studying, among other debugging tasks.
还有 Detours,来自 Microsoft,免费,它是一个挂钩 Windows 的库API,但它不是一个完整的监控程序,你必须做一些工作来拦截API调用。
There's also Detours, free from Microsoft, it's a library to hook the windows API, but it's not a complete monitor program, you have to do some work to intercept the API calls.
http://www.bladeapimonitor.com/ 似乎正在做你需要的事情。
根据您想要查看的内容,Procmon 也可以完成这项工作。
http://www.bladeapimonitor.com/ seems to be doing what you need.
Depending on what you want to see, Procmon might also do the job.