what is the equivalent of BstrWrapper of c# in vc++
A:
In Win32 BSTR
, other libraries might provide wrappers of this primitive type.
Richard
2010-03-11 09:46:02
+3
A:
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
.
Franci Penov
2010-03-11 10:02:11