void CLoginFaceDlg::OnBnClickedButton1()
{
char* pFileName = "czy.bst";
CStdioFile file;
CFileException fileException;
if(!file.Open(pFileName,CFile::modeRead),&fileException){ AfxMessageBox(_T("Unable to open file"));
   exit(1);
}
}在VS2005下编译后错误是:\LoginFaceDlg.cpp(116) : error C2664: 'CFile::Open' : cannot convert parameter 1 from 'char *' to 'LPCTSTR'
        Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast因为没有MSDN 请会的朋友给帮忙解决一下  谢谢大家