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