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