Equivalent of Bstr Wrapper of c# in vc++
what is the equivalent of BstrWrapper of c# in vc++开发者_StackOverflow
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
.
In Win32 BSTR
, other libraries might provide wrappers of this primitive type.
精彩评论