--- In [email protected], "Sheri" <sheri...@...> wrote:
> Haven't researched, but richedit50A gets hits on Google. My richedit.h only has #define MSFTEDIT_CLASS L"RICHEDIT50W" RICHEDIT50A doesn't occur. My headers are not cutting-edige up-to-date: OTOH if RICHEDIT50A existed you'd expect it in older versions of relevant headers, not newest. typical pattern for class names and their associated preprocessor symbols: #define RICHEDIT_CLASSA "RichEdit20A" #define RICHEDIT_CLASSW L"RichEdit20W" #ifdef UNICODE #define RICHEDIT_CLASS RICHEDIT_CLASSW #else #define RICHEDIT_CLASS RICHEDIT_CLASSA #endif // UNICODE
