Initial suggestion:
to avoid reimplementing a lot of functionality available in stl classes define:
#ifdef UNICODE
typedef std::string String;
#else
typedef std::wstring String;
#endif
Then add extra function for string manipulation (as soon as we get we need them)
to avoid reimplementing a lot of functionality available in stl classes define:
#ifdef UNICODE
typedef std::string String;
#else
typedef std::wstring String;
#endif
Then add extra function for string manipulation (as soon as we get we need them)