mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[POWERCFG] Disable the "Enable hibernation" checkbox if the system does not support hibernation
This commit is contained in:
parent
315765ed8b
commit
beeb989eaa
1 changed files with 7 additions and 0 deletions
|
@ -19,6 +19,7 @@ Hib_InitDialog(HWND hwndDlg)
|
|||
TCHAR szTemp[MAX_PATH];
|
||||
LPTSTR lpRoot;
|
||||
ULARGE_INTEGER FreeBytesAvailable, TotalNumberOfBytes, TotalNumberOfFreeBytes;
|
||||
BOOLEAN bHibernate;
|
||||
|
||||
if (GetPwrCapabilities(&PowerCaps))
|
||||
{
|
||||
|
@ -59,6 +60,12 @@ Hib_InitDialog(HWND hwndDlg)
|
|||
ShowWindow(GetDlgItem(hwndDlg, IDC_TOLESSFREESPACE), FALSE);
|
||||
EnableWindow(GetDlgItem(hwndDlg, IDC_HIBERNATEFILE), TRUE);
|
||||
}
|
||||
|
||||
bHibernate = PowerCaps.HiberFilePresent ? TRUE : FALSE;
|
||||
if (CallNtPowerInformation(SystemReserveHiberFile, &bHibernate, sizeof(bHibernate), NULL, 0) != STATUS_SUCCESS)
|
||||
{
|
||||
EnableWindow(GetDlgItem(hwndDlg, IDC_HIBERNATEFILE), FALSE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue