how do i prevent screen-savers and sleeps during my program execution?(如何在程序执行期间防止屏幕保护程序和睡眠?)
问题描述
在 Win7 上运行的 c++ 程序中,有没有办法伪造鼠标移动或类似的东西,只是为了防止屏幕保护程序启动和系统进入睡眠状态?我正在寻找最小的方法,我不喜欢使用 .NET.谢谢,-nuun
In a c++ program run on Win7, is there a way to fake a mouse movement or something like that, just to keep the screen saver from starting and the system from going to sleep? I'm looking for the minimal approach and I prefer not to use .NET. Thanks, -nuun
推荐答案
不要乱动屏保设置,使用SetThreadExecutionState.这是用于通知窗口您的应用程序处于活动状态的 API:
Don't mess with the screensaver settings, use SetThreadExecutionState. This is the API for informing windows on the fact that your application is active:
使应用程序能够通知它正在使用的系统,从而阻止系统进入睡眠或关闭显示器,同时应用程序正在运行.
Enables an application to inform the system that it is in use, thereby preventing the system from entering sleep or turning off the display while the application is running.
,和
多媒体应用,例如视频播放器和演示应用程序,必须使用 ES_DISPLAY_REQUIRED 当他们长时间显示视频无需用户输入
Multimedia applications, such as video players and presentation applications, must use ES_DISPLAY_REQUIRED when they display video for long periods of time without user input
这篇关于如何在程序执行期间防止屏幕保护程序和睡眠?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在程序执行期间防止屏幕保护程序和睡眠?
基础教程推荐
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- CString 到 char* 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
