|
From: Chris D. <cdanford@u.washington.edu> - 2002-10-28 20:15:31
|
I'm planning tonight to get rid of the remaining MFC dependencies. Here's the plan: - Drop in this CString-clone (http://www.codeproject.com/string/stdstring.asp) - Change all instances of "ssprintf("%s",str)" to "ssprintf("%s",str.c_str())" - Replace MFC's ASSERT() with libc's assert() - Replace AfxMessageBox() with MessageBox() If anyone can foresee other issues, please mail me or the list. -Chris |