mscoree.dll 中的 RunDll32ShimW 有何用途?
我正在查看 mscoree 中的导出,并注意到它导出了一个名为 RunDll32ShimW 的函数。 MSDN 上的文档这里是'特别有帮助。有谁知道这是做什么用的吗?
我检查了它的反汇编(它不在 SSCLI 中),看起来它需要一个程序集名称和函数,使用 mscoree!LoadLibraryShim 加载 DLL,并调用其上的函数。
I was looking at the exports in mscoree and notice that it exports a function named RunDll32ShimW. The docs on MSDN here aren't particularly helpful. Anyone know what this was for?
I checked out the disassembly of it (it's not in the SSCLI) and it looks like it takes an assembly name and function, loads the DLL with mscoree!LoadLibraryShim, and calls the function on it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文档中的关键句子是这:
至于它的作用,我会做出有根据的猜测,它调用
ShellExecute
或CreateProcess
并且应该是由rundll32.exe
调用。The key sentence from the documentation is this:
As to what it does, I would make an educated guess that it calls
ShellExecute
orCreateProcess
and was meant to be invoked byrundll32.exe
.