이것저것/My_Work

[Windows] - Power Management Events

우담바라 2009. 4. 23. 13:24



Power Management Events

The following are the power management events:

Windows Server 2003, Windows XP, and Windows 2000:  The following events are also supported:

PBT_APMBATTERYLOW
PBT_APMOEMEVENT
PBT_APMQUERYSUSPEND
PBT_APMQUERYSUSPENDFAILED
PBT_APMRESUMECRITICAL
Event Message : WM_POWERBROADCAST


[ cf ]

BOOL  CestDlg::PreTranslateMessage(MSG* pMsg)
{
 if( (pMsg->message == WM_POWERBROADCAST && pMsg->wParam == PBT_APMPOWERSTATUSCHANGE)){  
...
// 처리 루틴
...
}
 
return CDialog::PreTranslateMessage(pMsg);
}

'이것저것 > My_Work' 카테고리의 다른 글

INTEL CPU 전력관리  (0) 2009.08.04
프로세스 생성  (0) 2009.05.20
EFI (Extensible Firmware Interface)  (0) 2009.04.15
Internet Explorer8 설치 후 Visual studio2005에서 문제 발생  (0) 2009.04.08
[MFC] - CreateProcess()  (0) 2009.04.03