Module: wine Branch: master Commit: 5f46d556fe22415ce423b34e453c20a89e809d34 URL: https://gitlab.winehq.org/wine/wine/-/commit/5f46d556fe22415ce423b34e453c20a...
Author: Alex Henrie alexhenrie24@gmail.com Date: Wed Nov 2 22:12:21 2022 -0600
include: Add wcsncat_s.
Needed to compile Tera Term.
---
include/msvcrt/corecrt_wstring.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/msvcrt/corecrt_wstring.h b/include/msvcrt/corecrt_wstring.h index 00e7863b5c3..bcf9f947625 100644 --- a/include/msvcrt/corecrt_wstring.h +++ b/include/msvcrt/corecrt_wstring.h @@ -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);