LoadLibrary 与其他“dll”文件的文件扩大
是否可以加载没有“dll”扩展名的 dll 文件?
谢谢
Is it possible to load a dll file that doesn't have a 'dll' extension?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以加载没有“dll”扩展名的 dll 文件?
谢谢
Is it possible to load a dll file that doesn't have a 'dll' extension?
Thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
是的,只需提供完整的文件名,包括扩展名(或者如果文件名不包含扩展名,则不包含扩展名)。
Yes, just provide full file name, including extension (or without extension, if file name doesn't contain it).
是的,这是可能的,但是文件仍然应该符合“dll”格式(它应该符合PE格式)。
yes, it is possible, but the file should still conform to the "dll" format (it should conform to the PE format).
是的,但您需要在路径末尾附加一个点 (
.
),以便 Windows 不会自动附加.dll
扩展名:https://msdn.microsoft.com/en-us/library /windows/desktop/ms684175.aspx
Yes, but you need to append a dot (
.
) to the end of the path so that Windows doesn't automatically append the.dll
extension:https://msdn.microsoft.com/en-us/library/windows/desktop/ms684175.aspx