Example #1
0
void		CIni::SerGet(	bool bGet,DWORD		& n,	LPCTSTR strEntry,	LPCTSTR strSection/*= NULL*/,	DWORD nDefault/* = 0*/)
{
   SerGetDWORD(bGet,n,strEntry,strSection,nDefault);
}
Example #2
0
void		CIni::SerGet(	bool bGet,WORD		& n,	LPCTSTR strEntry,	LPCTSTR strSection/*= NULL*/,	DWORD nDefault/* = 0*/)
{
   DWORD dwTemp = n;
   SerGetDWORD(bGet,dwTemp,strEntry,strSection,nDefault);
   n = (WORD)dwTemp;
}
Example #3
0
void CIni::SerGet( BOOL bGet,DWORD & n, CString strEntry, LPCSTR strSection/*= NULL*/, DWORD nDefault/* = 0*/)
{
	SerGetDWORD(bGet,n,strEntry,strSection,nDefault);
}