mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
736 lines
22 KiB
C
736 lines
22 KiB
C
/*
|
|
* PROJECT: ReactOS system properties, control panel applet
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: dll/cpl/sysdm/virtmem.c
|
|
* PURPOSE: Virtual memory control dialog
|
|
* COPYRIGHT: Copyright 2006 Ged Murphy <gedmurphy@gmail.com>
|
|
*
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
static BOOL OnSelChange(HWND hwndDlg, PVIRTMEM pVirtMem);
|
|
static LPCTSTR lpKey = _T("SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Memory Management");
|
|
|
|
static BOOL
|
|
ReadPageFileSettings(PVIRTMEM pVirtMem)
|
|
{
|
|
HKEY hkey = NULL;
|
|
DWORD dwType;
|
|
DWORD dwDataSize;
|
|
BOOL bRet = FALSE;
|
|
|
|
if (RegCreateKeyEx(HKEY_LOCAL_MACHINE,
|
|
lpKey,
|
|
0,
|
|
NULL,
|
|
REG_OPTION_NON_VOLATILE,
|
|
KEY_QUERY_VALUE,
|
|
NULL,
|
|
&hkey,
|
|
NULL) == ERROR_SUCCESS)
|
|
{
|
|
if (RegQueryValueEx(hkey,
|
|
_T("PagingFiles"),
|
|
NULL,
|
|
&dwType,
|
|
NULL,
|
|
&dwDataSize) == ERROR_SUCCESS)
|
|
{
|
|
pVirtMem->szPagingFiles = (LPTSTR)HeapAlloc(GetProcessHeap(),
|
|
0,
|
|
dwDataSize);
|
|
if (pVirtMem->szPagingFiles != NULL)
|
|
{
|
|
ZeroMemory(pVirtMem->szPagingFiles,
|
|
dwDataSize);
|
|
if (RegQueryValueEx(hkey,
|
|
_T("PagingFiles"),
|
|
NULL,
|
|
&dwType,
|
|
(PBYTE)pVirtMem->szPagingFiles,
|
|
&dwDataSize) == ERROR_SUCCESS)
|
|
{
|
|
bRet = TRUE;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!bRet)
|
|
ShowLastWin32Error(pVirtMem->hSelf);
|
|
|
|
if (hkey != NULL)
|
|
RegCloseKey(hkey);
|
|
|
|
return bRet;
|
|
}
|
|
|
|
|
|
static VOID
|
|
GetPageFileSizes(LPTSTR lpPageFiles,
|
|
LPINT lpInitialSize,
|
|
LPINT lpMaximumSize)
|
|
{
|
|
INT i = 0;
|
|
|
|
*lpInitialSize = -1;
|
|
*lpMaximumSize = -1;
|
|
|
|
while (*lpPageFiles != _T('\0'))
|
|
{
|
|
if (*lpPageFiles == _T(' '))
|
|
{
|
|
lpPageFiles++;
|
|
|
|
switch (i)
|
|
{
|
|
case 0:
|
|
*lpInitialSize = (INT)_ttoi(lpPageFiles);
|
|
i = 1;
|
|
break;
|
|
|
|
case 1:
|
|
*lpMaximumSize = (INT)_ttoi(lpPageFiles);
|
|
return;
|
|
}
|
|
}
|
|
|
|
lpPageFiles++;
|
|
}
|
|
}
|
|
|
|
|
|
static VOID
|
|
ParseMemSettings(PVIRTMEM pVirtMem)
|
|
{
|
|
TCHAR szDrives[1024]; // All drives
|
|
LPTSTR DrivePtr = szDrives;
|
|
TCHAR szDrive[3]; // Single drive
|
|
TCHAR szVolume[MAX_PATH + 1];
|
|
INT MinSize;
|
|
INT MaxSize;
|
|
INT DriveLen;
|
|
INT PgCnt = 0;
|
|
INT Len;
|
|
|
|
DriveLen = GetLogicalDriveStrings(1023,
|
|
szDrives);
|
|
|
|
while (DriveLen != 0)
|
|
{
|
|
Len = lstrlen(DrivePtr) + 1;
|
|
DriveLen -= Len;
|
|
|
|
DrivePtr = _tcsupr(DrivePtr);
|
|
|
|
/* Copy the 'X:' portion */
|
|
lstrcpyn(szDrive, DrivePtr, sizeof(szDrive) / sizeof(TCHAR));
|
|
|
|
if (GetDriveType(DrivePtr) == DRIVE_FIXED)
|
|
{
|
|
MinSize = -1;
|
|
MaxSize = -1;
|
|
|
|
/* Does drive match the one in the registry ? */
|
|
if (!_tcsncmp(pVirtMem->szPagingFiles, szDrive, 2))
|
|
{
|
|
GetPageFileSizes(pVirtMem->szPagingFiles,
|
|
&MinSize,
|
|
&MaxSize);
|
|
}
|
|
|
|
pVirtMem->Pagefile[PgCnt].OldMinSize = MinSize;
|
|
pVirtMem->Pagefile[PgCnt].OldMaxSize = MaxSize;
|
|
pVirtMem->Pagefile[PgCnt].NewMinSize = MinSize;
|
|
pVirtMem->Pagefile[PgCnt].NewMaxSize = MaxSize;
|
|
pVirtMem->Pagefile[PgCnt].bUsed = TRUE;
|
|
lstrcpy(pVirtMem->Pagefile[PgCnt].szDrive, szDrive);
|
|
|
|
|
|
/* Get the volume label if there is one */
|
|
if (GetVolumeInformation(DrivePtr,
|
|
szVolume,
|
|
MAX_PATH + 1,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
0))
|
|
{
|
|
pVirtMem->Pagefile[PgCnt].pszVolume = HeapAlloc(GetProcessHeap(),
|
|
0,
|
|
(_tcslen(szVolume) + 1) * sizeof(TCHAR));
|
|
if (pVirtMem->Pagefile[PgCnt].pszVolume != NULL)
|
|
_tcscpy(pVirtMem->Pagefile[PgCnt].pszVolume, szVolume);
|
|
}
|
|
|
|
PgCnt++;
|
|
}
|
|
|
|
DrivePtr += Len;
|
|
}
|
|
|
|
pVirtMem->Count = PgCnt;
|
|
}
|
|
|
|
|
|
static VOID
|
|
WritePageFileSettings(PVIRTMEM pVirtMem)
|
|
{
|
|
HKEY hk = NULL;
|
|
TCHAR szPagingFiles[2048];
|
|
TCHAR szText[256];
|
|
INT i, nPos = 0;
|
|
BOOL bErr = TRUE;
|
|
|
|
for (i = 0; i < pVirtMem->Count; ++i)
|
|
{
|
|
if (pVirtMem->Pagefile[i].bUsed &&
|
|
pVirtMem->Pagefile[i].NewMinSize != -1 &&
|
|
pVirtMem->Pagefile[i].NewMaxSize != -1)
|
|
{
|
|
_stprintf(szText,
|
|
_T("%s\\pagefile.sys %i %i"),
|
|
pVirtMem->Pagefile[i].szDrive,
|
|
pVirtMem->Pagefile[i].NewMinSize,
|
|
pVirtMem->Pagefile[i].NewMaxSize);
|
|
|
|
/* Add it to our overall registry string */
|
|
lstrcpy(szPagingFiles + nPos, szText);
|
|
|
|
/* Record the position where the next string will start */
|
|
nPos += (INT)lstrlen(szText) + 1;
|
|
|
|
/* Add another NULL for REG_MULTI_SZ */
|
|
szPagingFiles[nPos] = _T('\0');
|
|
nPos++;
|
|
}
|
|
}
|
|
|
|
if (RegCreateKeyEx(HKEY_LOCAL_MACHINE,
|
|
lpKey,
|
|
0,
|
|
NULL,
|
|
REG_OPTION_NON_VOLATILE,
|
|
KEY_WRITE,
|
|
NULL,
|
|
&hk,
|
|
NULL) == ERROR_SUCCESS)
|
|
{
|
|
if (RegSetValueEx(hk,
|
|
_T("PagingFiles"),
|
|
0,
|
|
REG_MULTI_SZ,
|
|
(LPBYTE) szPagingFiles,
|
|
(DWORD) nPos * sizeof(TCHAR)) == ERROR_SUCCESS)
|
|
{
|
|
bErr = FALSE;
|
|
}
|
|
|
|
RegCloseKey(hk);
|
|
}
|
|
|
|
if (bErr == FALSE)
|
|
{
|
|
/* Delete obsolete paging files on the next boot */
|
|
for (i = 0; i < 26; i++)
|
|
{
|
|
if (pVirtMem->Pagefile[i].OldMinSize != -1 &&
|
|
pVirtMem->Pagefile[i].NewMinSize == -1)
|
|
{
|
|
_stprintf(szText,
|
|
_T("%s\\pagefile.sys"),
|
|
pVirtMem->Pagefile[i].szDrive);
|
|
|
|
MoveFileEx(szText, NULL, MOVEFILE_DELAY_UNTIL_REBOOT);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (bErr)
|
|
ShowLastWin32Error(pVirtMem->hSelf);
|
|
|
|
}
|
|
|
|
|
|
static VOID
|
|
SetListBoxColumns(HWND hwndListBox)
|
|
{
|
|
RECT rect = {0, 0, 103, 0};
|
|
MapDialogRect(hwndListBox, &rect);
|
|
|
|
SendMessage(hwndListBox, LB_SETTABSTOPS, (WPARAM)1, (LPARAM)&rect.right);
|
|
}
|
|
|
|
|
|
static VOID
|
|
OnNoPagingFile(PVIRTMEM pVirtMem)
|
|
{
|
|
/* Disable the page file custom size boxes */
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_INITIALSIZE), FALSE);
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_MAXSIZE), FALSE);
|
|
}
|
|
|
|
|
|
static VOID
|
|
OnSysManSize(PVIRTMEM pVirtMem)
|
|
{
|
|
/* Disable the page file custom size boxes */
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_INITIALSIZE), FALSE);
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_MAXSIZE), FALSE);
|
|
}
|
|
|
|
|
|
static VOID
|
|
OnCustom(PVIRTMEM pVirtMem)
|
|
{
|
|
/* Enable the page file custom size boxes */
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_INITIALSIZE), TRUE);
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_MAXSIZE), TRUE);
|
|
}
|
|
|
|
|
|
static VOID
|
|
InitPagefileList(PVIRTMEM pVirtMem)
|
|
{
|
|
TCHAR szDisplayString[256];
|
|
TCHAR szSize[64];
|
|
INT Index;
|
|
INT i;
|
|
|
|
for (i = 0; i < 26; i++)
|
|
{
|
|
if (pVirtMem->Pagefile[i].bUsed)
|
|
{
|
|
if ((pVirtMem->Pagefile[i].NewMinSize == -1) &&
|
|
(pVirtMem->Pagefile[i].NewMaxSize == -1))
|
|
{
|
|
LoadString(hApplet,
|
|
IDS_PAGEFILE_NONE,
|
|
szSize,
|
|
sizeof(szSize) / sizeof(szSize[0]));
|
|
}
|
|
else if ((pVirtMem->Pagefile[i].NewMinSize == 0) &&
|
|
(pVirtMem->Pagefile[i].NewMaxSize == 0))
|
|
{
|
|
LoadString(hApplet,
|
|
IDS_PAGEFILE_SYSTEM,
|
|
szSize,
|
|
sizeof(szSize) / sizeof(szSize[0]));
|
|
}
|
|
else
|
|
{
|
|
_stprintf(szSize, _T("%d - %d"),
|
|
pVirtMem->Pagefile[i].NewMinSize,
|
|
pVirtMem->Pagefile[i].NewMaxSize);
|
|
}
|
|
|
|
_stprintf(szDisplayString,
|
|
_T("%s [%s]\t%s"),
|
|
pVirtMem->Pagefile[i].szDrive,
|
|
pVirtMem->Pagefile[i].pszVolume ? pVirtMem->Pagefile[i].pszVolume : _T(""),
|
|
szSize);
|
|
|
|
Index = SendMessage(pVirtMem->hListBox, LB_ADDSTRING, (WPARAM)0, (LPARAM)szDisplayString);
|
|
SendMessage(pVirtMem->hListBox, LB_SETITEMDATA, Index, i);
|
|
}
|
|
}
|
|
|
|
SendMessage(pVirtMem->hListBox, LB_SETCURSEL, (WPARAM)0, (LPARAM)0);
|
|
|
|
OnSelChange(pVirtMem->hSelf, pVirtMem);
|
|
}
|
|
|
|
|
|
static VOID
|
|
UpdatePagefileEntry(PVIRTMEM pVirtMem,
|
|
INT ListIndex,
|
|
INT DriveIndex)
|
|
{
|
|
TCHAR szDisplayString[256];
|
|
TCHAR szSize[64];
|
|
|
|
if ((pVirtMem->Pagefile[DriveIndex].NewMinSize == -1) &&
|
|
(pVirtMem->Pagefile[DriveIndex].NewMaxSize == -1))
|
|
{
|
|
LoadString(hApplet,
|
|
IDS_PAGEFILE_NONE,
|
|
szSize,
|
|
sizeof(szSize) / sizeof(szSize[0]));
|
|
}
|
|
else if ((pVirtMem->Pagefile[DriveIndex].NewMinSize == 0) &&
|
|
(pVirtMem->Pagefile[DriveIndex].NewMaxSize == 0))
|
|
{
|
|
LoadString(hApplet,
|
|
IDS_PAGEFILE_SYSTEM,
|
|
szSize,
|
|
sizeof(szSize) / sizeof(szSize[0]));
|
|
}
|
|
else
|
|
{
|
|
_stprintf(szSize,
|
|
_T("%d - %d"),
|
|
pVirtMem->Pagefile[DriveIndex].NewMinSize,
|
|
pVirtMem->Pagefile[DriveIndex].NewMaxSize);
|
|
}
|
|
|
|
_stprintf(szDisplayString,
|
|
_T("%s [%s]\t%s"),
|
|
pVirtMem->Pagefile[DriveIndex].szDrive,
|
|
pVirtMem->Pagefile[DriveIndex].pszVolume ? pVirtMem->Pagefile[DriveIndex].pszVolume : L"",
|
|
szSize);
|
|
|
|
SendMessage(pVirtMem->hListBox, LB_DELETESTRING, (WPARAM)ListIndex, 0);
|
|
SendMessage(pVirtMem->hListBox, LB_INSERTSTRING, (WPARAM)ListIndex, (LPARAM)szDisplayString);
|
|
SendMessage(pVirtMem->hListBox, LB_SETCURSEL, (WPARAM)ListIndex, 0);
|
|
}
|
|
|
|
|
|
static VOID
|
|
OnSet(PVIRTMEM pVirtMem)
|
|
{
|
|
INT Index;
|
|
UINT MinSize = -1;
|
|
UINT MaxSize = -1;
|
|
BOOL bTranslated;
|
|
INT DriveIndex = 0;
|
|
|
|
Index = (INT)SendDlgItemMessage(pVirtMem->hSelf,
|
|
IDC_PAGEFILELIST,
|
|
LB_GETCURSEL,
|
|
0,
|
|
0);
|
|
if (Index >= 0 && Index < pVirtMem->Count)
|
|
{
|
|
DriveIndex = SendDlgItemMessage(pVirtMem->hSelf,
|
|
IDC_PAGEFILELIST,
|
|
LB_GETITEMDATA,
|
|
(WPARAM)Index,
|
|
0);
|
|
|
|
/* Check if custom settings are checked */
|
|
if (IsDlgButtonChecked(pVirtMem->hSelf,
|
|
IDC_CUSTOM) == BST_CHECKED)
|
|
{
|
|
MinSize = GetDlgItemInt(pVirtMem->hSelf,
|
|
IDC_INITIALSIZE,
|
|
&bTranslated,
|
|
FALSE);
|
|
if (!bTranslated)
|
|
{
|
|
ResourceMessageBox(hApplet,
|
|
NULL,
|
|
MB_ICONWARNING | MB_OK,
|
|
IDS_MESSAGEBOXTITLE,
|
|
IDS_WARNINITIALSIZE);
|
|
return;
|
|
}
|
|
|
|
MaxSize = GetDlgItemInt(pVirtMem->hSelf,
|
|
IDC_MAXSIZE,
|
|
&bTranslated,
|
|
FALSE);
|
|
if (!bTranslated)
|
|
{
|
|
ResourceMessageBox(hApplet,
|
|
NULL,
|
|
MB_ICONWARNING | MB_OK,
|
|
IDS_MESSAGEBOXTITLE,
|
|
IDS_WARNMAXIMUMSIZE);
|
|
return;
|
|
}
|
|
|
|
/* Check the valid range of the minimum size */
|
|
if (MinSize < 16 ||
|
|
MinSize > pVirtMem->Pagefile[DriveIndex].FreeSize)
|
|
{
|
|
ResourceMessageBox(hApplet,
|
|
NULL,
|
|
MB_ICONWARNING | MB_OK,
|
|
IDS_MESSAGEBOXTITLE,
|
|
IDS_WARNINITIALRANGE);
|
|
return;
|
|
}
|
|
|
|
/* Check the valid range of the maximum size */
|
|
if (MaxSize < MinSize ||
|
|
MaxSize > pVirtMem->Pagefile[DriveIndex].FreeSize ||
|
|
MaxSize > 4095)
|
|
{
|
|
ResourceMessageBox(hApplet,
|
|
NULL,
|
|
MB_ICONWARNING | MB_OK,
|
|
IDS_MESSAGEBOXTITLE,
|
|
IDS_WARNMAXIMUMRANGE);
|
|
return;
|
|
}
|
|
|
|
pVirtMem->Pagefile[DriveIndex].NewMinSize = MinSize;
|
|
pVirtMem->Pagefile[DriveIndex].NewMaxSize = MaxSize;
|
|
pVirtMem->Pagefile[DriveIndex].bUsed = TRUE;
|
|
}
|
|
else if (IsDlgButtonChecked(pVirtMem->hSelf,
|
|
IDC_NOPAGEFILE) == BST_CHECKED)
|
|
{
|
|
/* No pagefile */
|
|
pVirtMem->Pagefile[DriveIndex].NewMinSize = -1;
|
|
pVirtMem->Pagefile[DriveIndex].NewMaxSize = -1;
|
|
pVirtMem->Pagefile[DriveIndex].bUsed = TRUE;
|
|
}
|
|
else
|
|
{
|
|
/* System managed size*/
|
|
pVirtMem->Pagefile[DriveIndex].NewMinSize = 0;
|
|
pVirtMem->Pagefile[DriveIndex].NewMaxSize = 0;
|
|
pVirtMem->Pagefile[DriveIndex].bUsed = TRUE;
|
|
}
|
|
|
|
/* Set the modified flag if min or max size has changed */
|
|
if ((pVirtMem->Pagefile[DriveIndex].OldMinSize != pVirtMem->Pagefile[DriveIndex].NewMinSize) ||
|
|
(pVirtMem->Pagefile[DriveIndex].OldMaxSize != pVirtMem->Pagefile[DriveIndex].NewMaxSize))
|
|
pVirtMem->bModified = TRUE;
|
|
|
|
UpdatePagefileEntry(pVirtMem, Index, DriveIndex);
|
|
}
|
|
}
|
|
|
|
|
|
static BOOL
|
|
OnSelChange(HWND hwndDlg, PVIRTMEM pVirtMem)
|
|
{
|
|
TCHAR szBuffer[64];
|
|
MEMORYSTATUSEX MemoryStatus;
|
|
ULARGE_INTEGER FreeDiskSpace;
|
|
UINT /*i,*/ FreeMemMb /*, PageFileSizeMb*/;
|
|
INT Index;
|
|
|
|
Index = (INT)SendDlgItemMessage(hwndDlg,
|
|
IDC_PAGEFILELIST,
|
|
LB_GETCURSEL,
|
|
0,
|
|
0);
|
|
if (Index >= 0 && Index < pVirtMem->Count)
|
|
{
|
|
/* Set drive letter */
|
|
SetDlgItemText(hwndDlg, IDC_DRIVE,
|
|
pVirtMem->Pagefile[Index].szDrive);
|
|
|
|
/* Set available disk space */
|
|
if (GetDiskFreeSpaceEx(pVirtMem->Pagefile[Index].szDrive,
|
|
NULL, NULL, &FreeDiskSpace))
|
|
{
|
|
pVirtMem->Pagefile[Index].FreeSize = (UINT)(FreeDiskSpace.QuadPart / (1024 * 1024));
|
|
_stprintf(szBuffer, _T("%u MB"), pVirtMem->Pagefile[Index].FreeSize);
|
|
SetDlgItemText(hwndDlg, IDC_SPACEAVAIL, szBuffer);
|
|
}
|
|
|
|
if (pVirtMem->Pagefile[Index].NewMinSize == -1 &&
|
|
pVirtMem->Pagefile[Index].NewMaxSize == -1)
|
|
{
|
|
/* No pagefile */
|
|
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_MAXSIZE), FALSE);
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_INITIALSIZE), FALSE);
|
|
|
|
CheckDlgButton(pVirtMem->hSelf, IDC_NOPAGEFILE, BST_CHECKED);
|
|
}
|
|
else if (pVirtMem->Pagefile[Index].NewMinSize == 0 &&
|
|
pVirtMem->Pagefile[Index].NewMaxSize == 0)
|
|
{
|
|
/* System managed size*/
|
|
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_MAXSIZE), FALSE);
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_INITIALSIZE), FALSE);
|
|
|
|
CheckDlgButton(pVirtMem->hSelf, IDC_SYSMANSIZE, BST_CHECKED);
|
|
}
|
|
else
|
|
{
|
|
/* Custom size */
|
|
|
|
/* Enable and fill the custom values */
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_MAXSIZE), TRUE);
|
|
EnableWindow(GetDlgItem(pVirtMem->hSelf, IDC_INITIALSIZE), TRUE);
|
|
|
|
SetDlgItemInt(pVirtMem->hSelf,
|
|
IDC_INITIALSIZE,
|
|
pVirtMem->Pagefile[Index].NewMinSize,
|
|
FALSE);
|
|
|
|
SetDlgItemInt(pVirtMem->hSelf,
|
|
IDC_MAXSIZE,
|
|
pVirtMem->Pagefile[Index].NewMaxSize,
|
|
FALSE);
|
|
|
|
CheckDlgButton(pVirtMem->hSelf,
|
|
IDC_CUSTOM,
|
|
BST_CHECKED);
|
|
}
|
|
|
|
/* Set minimum pagefile size */
|
|
SetDlgItemText(hwndDlg, IDC_MINIMUM, _T("16 MB"));
|
|
|
|
/* Set recommended pagefile size */
|
|
MemoryStatus.dwLength = sizeof(MEMORYSTATUSEX);
|
|
if (GlobalMemoryStatusEx(&MemoryStatus))
|
|
{
|
|
FreeMemMb = (UINT)(MemoryStatus.ullTotalPhys / (1024 * 1024));
|
|
_stprintf(szBuffer, _T("%u MB"), FreeMemMb + (FreeMemMb / 2));
|
|
SetDlgItemText(hwndDlg, IDC_RECOMMENDED, szBuffer);
|
|
}
|
|
|
|
/* Set current pagefile size */
|
|
#if 0
|
|
PageFileSizeMb = 0;
|
|
for (i = 0; i < 26; i++)
|
|
{
|
|
PageFileSizeMb += pVirtMem->Pagefile[i].InitialSize;
|
|
}
|
|
_stprintf(szBuffer, _T("%u MB"), PageFileSizeMb);
|
|
SetDlgItemText(hwndDlg, IDC_CURRENT, szBuffer);
|
|
#endif
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
static VOID
|
|
OnVirtMemDialogOk(PVIRTMEM pVirtMem)
|
|
{
|
|
if (pVirtMem->bModified != FALSE)
|
|
{
|
|
ResourceMessageBox(hApplet,
|
|
NULL,
|
|
MB_ICONINFORMATION | MB_OK,
|
|
IDS_MESSAGEBOXTITLE,
|
|
IDS_INFOREBOOT);
|
|
|
|
WritePageFileSettings(pVirtMem);
|
|
}
|
|
}
|
|
|
|
|
|
static VOID
|
|
OnInitVirtMemDialog(HWND hwnd, PVIRTMEM pVirtMem)
|
|
{
|
|
INT i;
|
|
|
|
pVirtMem->hSelf = hwnd;
|
|
pVirtMem->hListBox = GetDlgItem(hwnd, IDC_PAGEFILELIST);
|
|
pVirtMem->bModified = FALSE;
|
|
|
|
SetListBoxColumns(pVirtMem->hListBox);
|
|
|
|
for (i = 0; i < 26; i++)
|
|
{
|
|
pVirtMem->Pagefile[i].bUsed = FALSE;
|
|
pVirtMem->Pagefile[i].OldMinSize = -1;
|
|
pVirtMem->Pagefile[i].OldMaxSize = -1;
|
|
pVirtMem->Pagefile[i].NewMinSize = -1;
|
|
pVirtMem->Pagefile[i].NewMaxSize = -1;
|
|
}
|
|
|
|
/* Load the pagefile systems from the reg */
|
|
ReadPageFileSettings(pVirtMem);
|
|
|
|
/* Parse our settings and set up dialog */
|
|
ParseMemSettings(pVirtMem);
|
|
|
|
InitPagefileList(pVirtMem);
|
|
}
|
|
|
|
|
|
static VOID
|
|
OnDestroy(PVIRTMEM pVirtMem)
|
|
{
|
|
INT i;
|
|
|
|
for (i = 0; i < 26; i++)
|
|
{
|
|
if (pVirtMem->Pagefile[i].pszVolume != NULL)
|
|
HeapFree(GetProcessHeap(), 0, pVirtMem->Pagefile[i].pszVolume);
|
|
}
|
|
|
|
if (pVirtMem->szPagingFiles)
|
|
HeapFree(GetProcessHeap(), 0, pVirtMem->szPagingFiles);
|
|
|
|
HeapFree(GetProcessHeap(), 0, pVirtMem);
|
|
}
|
|
|
|
|
|
INT_PTR CALLBACK
|
|
VirtMemDlgProc(HWND hwndDlg,
|
|
UINT uMsg,
|
|
WPARAM wParam,
|
|
LPARAM lParam)
|
|
{
|
|
PVIRTMEM pVirtMem;
|
|
|
|
UNREFERENCED_PARAMETER(lParam);
|
|
|
|
pVirtMem = (PVIRTMEM)GetWindowLongPtr(hwndDlg, DWLP_USER);
|
|
|
|
switch (uMsg)
|
|
{
|
|
case WM_INITDIALOG:
|
|
pVirtMem = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(VIRTMEM));
|
|
if (pVirtMem == NULL)
|
|
{
|
|
EndDialog(hwndDlg, 0);
|
|
return FALSE;
|
|
}
|
|
|
|
SetWindowLongPtr(hwndDlg, DWLP_USER, (LONG_PTR)pVirtMem);
|
|
|
|
OnInitVirtMemDialog(hwndDlg, pVirtMem);
|
|
break;
|
|
|
|
case WM_DESTROY:
|
|
OnDestroy(pVirtMem);
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
switch (LOWORD(wParam))
|
|
{
|
|
case IDCANCEL:
|
|
EndDialog(hwndDlg, 0);
|
|
return TRUE;
|
|
|
|
case IDOK:
|
|
OnVirtMemDialogOk(pVirtMem);
|
|
EndDialog(hwndDlg, pVirtMem->bModified);
|
|
return TRUE;
|
|
|
|
case IDC_NOPAGEFILE:
|
|
OnNoPagingFile(pVirtMem);
|
|
return TRUE;
|
|
|
|
case IDC_SYSMANSIZE:
|
|
OnSysManSize(pVirtMem);
|
|
return TRUE;
|
|
|
|
case IDC_CUSTOM:
|
|
OnCustom(pVirtMem);
|
|
return TRUE;
|
|
|
|
case IDC_SET:
|
|
OnSet(pVirtMem);
|
|
return TRUE;
|
|
|
|
case IDC_PAGEFILELIST:
|
|
switch (HIWORD(wParam))
|
|
{
|
|
case LBN_SELCHANGE:
|
|
OnSelChange(hwndDlg, pVirtMem);
|
|
return TRUE;
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|