抑制 LoadLibrary 中的错误
我正在尝试消除 Windows 在加载 DLL 时有时会弹出的错误消息。
我尝试执行以下操作:
UINT oldErrorMode = SetErrorMode(SEM_FAILCRITICALERRORS);
SetErrorMode(oldErrorMode | SEM_FAILCRITICALERRORS);
LoadLibrary(myDll);
SetErrorMode(oldErrorMode);
但我仍然收到错误窗口,我尝试加载几个 DLL 以确保它们不会删除 SerErrorMode() 所以情况并非如此。
有人知道我还能尝试什么吗?
谢谢
I'm trying to get rid of the error messages Windows sometimes pops when loading a DLL.
I tried to do the following:
UINT oldErrorMode = SetErrorMode(SEM_FAILCRITICALERRORS);
SetErrorMode(oldErrorMode | SEM_FAILCRITICALERRORS);
LoadLibrary(myDll);
SetErrorMode(oldErrorMode);
But I'm still getting the error windows, I tried to load several DLLs to make sure they don't remove
the SerErrorMode() so that's not the case.
Does anybody has an idea what else can I try?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论