Possible Duplicate:
Use CString in console app when using VS Express
I'm seriously rusty with C, seems alot has changed since the last time I used it.
I'm trying to build a program that was written in VS2008, only I'm using 2012 Express. So, naturally, errors are everywhere.
First one on the list is CString. Keeps coming up as an undeclared identifier. From what I've picked up, the library isn't included in VS2012 Express. So I need to find a workaround. So far, Google is giving me results I can't understand (as stated, I'm seriously rusty).
Can anyone give me an easier alternative to CString in the code below? Thanks!
bool Decoder::decode(LPCWSTR theCaption, TABLE_SUMMARY& table)
{
// If the caption doesn't contain the word "You" return false
CString strCaption = theCaption;
if (-1 == strCaption.Find(L"You"))
return false;