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