subbu
subbu

Reputation: 3299

Equivalent of Bstr Wrapper of c# in vc++

what is the equivalent of BstrWrapper of c# in vc++

Upvotes: 0

Views: 593

Answers (2)

Franci Penov
Franci Penov

Reputation: 76001

ATL has the quite handy CComBSTR class. However, ATL comes only with the paid versions of VS.

There's also the compiler COM support class _bstr_t.

And you can directly use the Win32 string manipulation functions.

Upvotes: 3

Richard
Richard

Reputation: 108995

In Win32 BSTR, other libraries might provide wrappers of this primitive type.

Upvotes: 0

Related Questions