tags:

views:

97

answers:

2

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

A: 

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

Richard
+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