Beispiel #1
0
void CSetDlgLists::FillListBoxItems(HWND hList, eFillListBoxItems eWhat, BYTE& nValue, bool abExact)
{
	UINT dwValue = nValue;
	FillListBoxItems(hList, eWhat, dwValue, abExact);

	if (abExact && (dwValue != nValue))
	{
		_ASSERTE(LOBYTE(dwValue) == dwValue);
		nValue = LOBYTE(dwValue);
	}
}
Beispiel #2
0
void CSetDlgLists::FillListBoxItems(HWND hList, eFillListBoxItems eWhat, const UINT& nValue)
{
	UINT dwValue = nValue;
	FillListBoxItems(hList, eWhat, dwValue, true);
}
Beispiel #3
0
void CSetDlgLists::FillListBoxItems(HWND hList, eFillListBoxItems eWhat, const DWORD& nValue)
{
	DWORD dwValue = nValue;
	FillListBoxItems(hList, eWhat, dwValue, true);
}