コード例 #1
0
ファイル: ini2.cpp プロジェクト: axxapp/winxgui
void CIni::SerGetColRef(	bool bGet,COLORREF	& cr,	LPCTSTR strEntry,	LPCTSTR strSection,	COLORREF crDefault)
{
	if(bGet)
		cr = GetColRef(strEntry,crDefault,strSection);
	else
		WriteColRef(strEntry,cr, strSection);
}
コード例 #2
0
ファイル: axIni.cpp プロジェクト: Wanghuaichen/SignalProcess
void CIni::SerGetColRef( BOOL bGet,COLORREF & cr, CString strEntry, LPCSTR strSection, COLORREF crDefault)
{
	if (bGet)
		cr = GetColRef(strEntry,crDefault,strSection);
	else
		WriteColRef(strEntry,cr, strSection);
}