Exemplo n.º 1
0
void		CIni::SerGet(	bool bGet,int		& n,	LPCTSTR strEntry,	LPCTSTR strSection/*= NULL*/,	int nDefault/* = 0*/)
{
   SerGetInt(bGet,n,strEntry,strSection,nDefault);
}
Exemplo n.º 2
0
void		CIni::SerGet(	bool bGet,short		& n,	LPCTSTR strEntry,	LPCTSTR strSection/*= NULL*/,	int nDefault/* = 0*/)
{
   int nTemp = n;
   SerGetInt(bGet,nTemp,strEntry,strSection,nDefault);
   n = (short)nTemp;
}
Exemplo n.º 3
0
void CIni::SerGet( BOOL bGet,int & n, CString strEntry, LPCSTR strSection/*= NULL*/, int nDefault/* = 0*/)
{
	SerGetInt(bGet,n,strEntry,strSection,nDefault);
}