riched20: EM_GETLINE implementation and test (resend)

Mike McCormack mike at codeweavers.com
Tue Apr 25 04:09:16 CDT 2006


tkho at ucla.edu wrote:

> +      memcpy(dest, L"\r", nEndChars*2);

Wide character strings aren't portable.  Please use something like:

static const WCHAR szsr[] = { '\r', 0 };

Mike



More information about the wine-devel mailing list