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