include: Add wcsncat_s.

Needed to compile Tera Term.
This commit is contained in:
Alex Henrie 2022-11-02 22:12:21 -06:00 committed by Alexandre Julliard
parent 26c9879a6c
commit 5f46d556fe

View file

@ -59,6 +59,7 @@ _ACRTIMP errno_t __cdecl wcscpy_s(wchar_t*,size_t,const wchar_t*);
_ACRTIMP size_t __cdecl wcscspn(const wchar_t*,const wchar_t*);
_ACRTIMP size_t __cdecl wcslen(const wchar_t*);
_ACRTIMP wchar_t* __cdecl wcsncat(wchar_t*,const wchar_t*,size_t);
_ACRTIMP errno_t __cdecl wcsncat_s(wchar_t*,size_t,const wchar_t*,size_t);
_ACRTIMP int __cdecl wcsncmp(const wchar_t*,const wchar_t*,size_t);
_ACRTIMP wchar_t* __cdecl wcsncpy(wchar_t*,const wchar_t*,size_t);
_ACRTIMP errno_t __cdecl wcsncpy_s(wchar_t*,size_t,const wchar_t*,size_t);