请教~C++中关于_tcsrchr的一个问题
在运行例程的时候有这样两句,
LPSTR pCh = (LPSTR)(LPCTSTR)m_strURL;
LPSTR pName = _tcsrchr(pCh,'/') + 1;
(其中m_strURL是CString)
代码在VS2005中编译报错:
error C2665: 'wcsrchr' : none of the 2 overloads could convert all the argument types
想请问,这两句代码是要完成什么操作?
这个错误又该如何解决呢?
谢谢~!