SysReAllocStringLen function oleaut32
Creates a new BSTR containing a specified number of characters from an old BSTR, and frees the old BSTR.
INT SysReAllocStringLen(
BSTR *pbstr,
const OLECHAR *psz,
UINT len
);
Implementation
int SysReAllocStringLen(
Pointer<Pointer<Utf16>> pbstr,
Pointer<Utf16> psz,
int len,
) => _SysReAllocStringLen(pbstr, psz, len);