Reputation: 3299
what is the equivalent of BstrWrapper of c# in vc++
Upvotes: 0
Views: 593
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
Reputation: 108995
In Win32 BSTR
, other libraries might provide wrappers of this primitive type.
Upvotes: 0