예제 #1
0
파일: ini2.cpp 프로젝트: axxapp/winxgui
void CIni::SerGetRect(		bool bGet,CRect		& rect,	LPCTSTR strEntry,	LPCTSTR strSection,	CRect rectDefault)
{
	if(bGet)
		rect = GetRect(strEntry,rectDefault,strSection);
	else
		WriteRect(strEntry,rect, strSection);
}
예제 #2
0
void CIni::SerGetRect( BOOL bGet,CRect & rect, CString strEntry, LPCSTR strSection, CRect rectDefault)
{
	if (bGet)
		rect = GetRect(strEntry,rectDefault,strSection);
	else
		WriteRect(strEntry,rect, strSection);
}