VarBstrCat function oleaut32

int VarBstrCat(
  1. Pointer<Utf16> bstrLeft,
  2. Pointer<Utf16> bstrRight,
  3. Pointer<Pointer<Utf16>> pbstrResult
)

Converts a variant from one type to another.

HRESULT VarBstrCat(
  [in]  BSTR   bstrLeft,
  [in]  BSTR   bstrRight,
  [out] LPBSTR pbstrResult
);

Implementation

int VarBstrCat(Pointer<Utf16> bstrLeft, Pointer<Utf16> bstrRight,
        Pointer<Pointer<Utf16>> pbstrResult) =>
    _VarBstrCat(bstrLeft, bstrRight, pbstrResult);