Sync to trunk head(r38096)
[reactos.git] / reactos / lib / sdk / strsafe / StringCchCatNW.c
1 #define STRSAFE_NO_CB_FUNCTIONS
2 #define StringCchCatNW _StringCchCatNW
3 #include <strsafe.h>
4
5 #undef StringCchCatNW
6 HRESULT __stdcall
7 StringCchCatNW(
8 STRSAFE_LPWSTR pszDest,
9 size_t cbDest,
10 STRSAFE_LPCWSTR pszSrc,
11 size_t cbMaxAppend)
12 {
13 /* Use the inlined version */
14 return _StringCchCatNW(pszDest, cbDest, pszSrc, cbMaxAppend);
15 }