Can there be an option to check the spelling of string arguments to C/C++ preprocessor macros? I am most concerned about the strings I present to the user, and those strings are most often passed to the _T() macro. Currently I am using a separate Visual Studio Extension to check those strings, but I would prefer not to run two extensions to check spelling.
So, any string passed to the _T() macro will not be checked. ex: TCHAR sztGreeting = _T("Helllo");
The spell checking works as advertised, but I find it unfortunate that it will not check strings passed to preprocessor macros. I presume there was some justification for that design decision (since it is specifically mentioned in the documentation), but it would be nice if there were an option to enable that kind of spell checking.