コード例 #1
0
ファイル: ini2.cpp プロジェクト: axxapp/winxgui
void		CIni::SerGet(	bool bGet,int		& n,	LPCTSTR strEntry,	LPCTSTR strSection/*= NULL*/,	int nDefault/* = 0*/)
{
   SerGetInt(bGet,n,strEntry,strSection,nDefault);
}
コード例 #2
0
ファイル: ini2.cpp プロジェクト: axxapp/winxgui
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;
}
コード例 #3
0
ファイル: axIni.cpp プロジェクト: Wanghuaichen/SignalProcess
void CIni::SerGet( BOOL bGet,int & n, CString strEntry, LPCSTR strSection/*= NULL*/, int nDefault/* = 0*/)
{
	SerGetInt(bGet,n,strEntry,strSection,nDefault);
}