最近遇到一个问题,程序需要检测电脑是否处于睡眠状态。一开始使用的方式是在WindowProc
里监听WM_POWERBROADCAST
消息,对PBT_APMSUSPEND``PBT_APMRESUMEAUTOMATIC
消息做处理。
但是实际测试中发现,这种方法在台式机中运行良好,但是放到笔记本电脑里就不行,系统休眠时监听不到WM_POWERBROADCAST
消息。
经过一番查文档,找到了一个比较通用的方法,适用于笔记本电脑和台式机。使用的系统接口是PowerRegisterSuspendResumeNotification
。测试代码如下:
#include <windows.h>
#include <iostream>
#include <powrprof.h>
#pragma comment(lib, "Powrprof.lib")
using namespace std;
ULONG CALLBACK DeviceCallback(PVOID Context, ULONG Type, PVOID Setting)
{
if (Type == PBT_APMSUSPEND)
{
cout << "close" << endl;
}
if (Type == PBT_APMRESUMESUSPEND)
{
cout << "open" << endl;
}
return ERROR_SUCCESS;
}
int main()
{
HPOWERNOTIFY g_power_notify_handle = NULL;
DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS params;
params.Callback = DeviceCallback;
params.Context = 0;
PowerRegisterSuspendResumeNotification(DEVICE_NOTIFY_CALLBACK, ¶ms, &g_power_notify_handle);
MSG msg;
while (GetMessage(&msg, NULL, 0, 0)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
PowerUnregisterSuspendResumeNotification(g_power_notify_handle);
return 0;
}
标签:PBT,POWERBROADCAST,lib,Windows,WM,笔记本,c++,include
From: https://www.cnblogs.com/chaichengxun/p/17607834.html