抑制 LoadLibrary 中的错误

发布于 2024-12-17 16:34:47 字数 348 浏览 1 评论 0原文

我正在尝试消除 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文