其他应用程序关闭屏幕保护程序后启用屏幕保护程序

发布于 2024-08-11 02:31:14 字数 121 浏览 3 评论 0原文

我有几个应用程序似乎可以关闭屏幕保护程序和视频卡的省电模式(例如Skype、VLC、mplayer 等)。有时,这些应用程序崩溃,显示器一直打开,直到我重新启动。是否有一个简单的 API 调用可以再次打开屏幕保护程序和省电模式?

I have several applications that seem to turn off the screensaver and the powersave mode of the video card (eg Skype, VLC, mplayer, etc). Sometimes, these applications crash and the monitor is just on all the time until I reboot. Is there a simple API call to turn on the screensaver and powersave mode again?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺深海 2024-08-18 02:31:14

这些应用程序可能使用 SystemParametersInfo 来关闭屏幕保护程序,因此您可以自己使用它来更改回来。
以下是您可能需要拨打的电话:

SystemParametersInfo(SPI_SETLOWPOWERTIMEOUT,power timeout you want, NULL, 0);
SystemParametersInfo(SPI_SETPOWEROFFTIMEOUT, poweroff timeout you want, NULL, 0);
SystemParametersInfo(SPI_SETSCREENSAVETIMEOUT,screensaver timeout you want, NULL, 0);

These applications probably use SystemParametersInfo to turn off the screensaver, so you can use it yourself to change back.
Here are the calls you may have to do:

SystemParametersInfo(SPI_SETLOWPOWERTIMEOUT,power timeout you want, NULL, 0);
SystemParametersInfo(SPI_SETPOWEROFFTIMEOUT, poweroff timeout you want, NULL, 0);
SystemParametersInfo(SPI_SETSCREENSAVETIMEOUT,screensaver timeout you want, NULL, 0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文