[NTOS]
[reactos.git] / reactos / lib / sdk / strsafe / StringCchLengthA.c
1 #define STRSAFE_NO_CB_FUNCTIONS
2 #define StringCchLengthA _StringCchLengthA
3 #include <strsafe.h>
4
5 #undef StringCchLengthA
6 HRESULT __stdcall
7 StringCchLengthA(
8 STRSAFE_LPCSTR psz,
9 size_t cbMax,
10 size_t *pcb)
11 {
12 /* Use the inlined version */
13 return _StringCchLengthA(psz, cbMax, pcb);
14 }