使用 Win32 API 在 Windows 进入待机或休眠状态之前接收事件
我正在开发一个用 C++/Qt 编写的小型聊天应用程序。我的用户抱怨当他们关闭笔记本电脑盖并且计算机进入待机状态时,连接没有正常关闭。
是否有一个 Win32 钩子可以在 Windows 即将进入待机状态时调用?
I'm working on a small chat application written in C++/Qt. My users are complaining that the connection is not shut down gracefully when they are closing the laptop lid and the computer enters standby.
Is there a Win32 hook available that is called when Windows is about to enter standby?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
WM_POWERBROADCAST
WM_POWERBROADCAST
在应用程序中重新实现 QCoreApplication::winEventFilter 以处理 Windows 待机事件。
Reimplement QCoreApplication::winEventFilter in your application to handle Windows standby events.