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