merge trunk head (37902)
[reactos.git] / reactos / lib / sdk / strsafe / StringCbCopyNExW.c
1 #define STRSAFE_NO_CCH_FUNCTIONS
2 #define StringCbCopyNExW _StringCbCopyNExW
3 #include <strsafe.h>
4
5 #undef StringCbCopyNExW
6 HRESULT __stdcall
7 StringCbCopyNExW(
8 STRSAFE_LPWSTR pszDest,
9 size_t cbDest,
10 STRSAFE_LPCWSTR pszSrc,
11 size_t cbMaxAppend,
12 STRSAFE_LPWSTR *ppszDestEnd,
13 size_t *pcbRemaining,
14 STRSAFE_DWORD dwFlags)
15
16 {
17 /* Use the inlined version */
18 return _StringCbCopyNExW(pszDest, cbDest, pszSrc, cbMaxAppend, ppszDestEnd, pcbRemaining, dwFlags);
19 }