Re: msvcrt: Implemented wcscpy_s (try 2)

2008-02-26 Thread Alexandre Julliard
"Alistair Leslie-Hughes" <[EMAIL PROTECTED]> writes: > Is there any thing wrong with this patch? >> +/* Test invalid size */ >> +szDest[0] = 'A'; >> +ret = p_wcscpy_s(szDest, 0, szLongText); >> +ok(ret == EINVAL, "expected ERANGE got %d\n", ret); >> +ok(szDest[0] == 0, "szD

Re: msvcrt: Implemented wcscpy_s (try 2)

2008-02-26 Thread Alistair Leslie-Hughes
Hi, Is there any thing wrong with this patch? Best Regards Alistair Leslie-Hughes "Alistair Leslie-Hughes" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > Correct msvcrt.spec file > > Changelog: &g

Re: msvcrt: Implemented wcscpy_s

2008-02-21 Thread Dmitry Timoshkov
"Alistair Leslie-Hughes" <[EMAIL PROTECTED]> wrote: > --- a/dlls/msvcrt/msvcrt.spec > +++ b/dlls/msvcrt/msvcrt.spec > @@ -761,6 +761,7 @@ > @ cdecl wcscmp(wstr wstr) ntdll.wcscmp > @ cdecl wcscoll(wstr wstr) MSVCRT_wcscoll > @ cdecl wcscpy(ptr wstr) ntdll.wcscpy > +@ cdecl wcscpy_s(wstr long wstr)