有人能教我如何在Delphi语言中使用"IShellExecuteHook.Execute“吗?
信息:IShellExecuteHook::Execute Method
描述:每当调用ShellExecute或ShellExecuteEx函数时,都会调用此方法。在资源管理器中双击文件或使用“运行”对话框时,会发生这种情况。
谢谢。
发布于 2011-01-26 23:48:18
下面的EDN链接看起来可以提供您所需的内容:How to hook ShellExecute calls (IShellExecuteHook)
请注意,它不能在64位Windows中工作,因为它需要64位shell扩展,而且因为Delphi只生成32位图像,所以您需要使用不同的语言。我还注意到,从Vista开始,IShellExecuteHook已被弃用。
https://stackoverflow.com/questions/4806147
复制相似问题