SysReAllocString function oleaut32

int SysReAllocString(
  1. Pointer<Pointer<Utf16>> pbstr,
  2. Pointer<Utf16> psz
)

Reallocates a previously allocated string to be the size of a second string and copies the second string into the reallocated memory.

INT SysReAllocString(
  BSTR          *pbstr,
  const OLECHAR *psz
);

Implementation

int SysReAllocString(Pointer<Pointer<Utf16>> pbstr, Pointer<Utf16> psz) =>
    _SysReAllocString(pbstr, psz);