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