static LPTSTR pstrExtensionList[] = { _T(""), _T(".com"), _T(".exe"), _T(".bat"), _T(".cmd"), NULL, };
When I compiled this piece of code, I got this error:
Error C2440 'initializing': cannot convert from 'const char [1]' to 'LPTSTR'
static LPTSTR pstrExtensionList[] = { _T(""), _T(".com"), _T(".exe"), _T(".bat"), _T(".cmd"), NULL, };
When I compiled this piece of code, I got this error:
Error C2440 'initializing': cannot convert from 'const char [1]' to 'LPTSTR'
No comments:
Post a Comment