[NTOS]
[reactos.git] / reactos / lib / sdk / strsafe / StringCbVPrintfA.c
1 #define STRSAFE_NO_CCH_FUNCTIONS
2 #define StringCbVPrintfA _StringCbVPrintfA
3 #include <strsafe.h>
4
5 #undef StringCbVPrintfA
6 HRESULT __stdcall
7 StringCbVPrintfA(
8 STRSAFE_LPSTR pszDest,
9 size_t cbDest,
10 STRSAFE_LPCSTR pszFormat,
11 va_list args)
12 {
13 /* Use the inlined version */
14 return _StringCbVPrintfA(pszDest, cbDest, pszFormat, args);
15 }