[EMAIL PROTECTED] wrote:

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

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

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

Mike


Reply via email to