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