Taking a simple example:
_bstr_t smartString(L"MyString");
Process(smartString); // takes BSTR.
Initially I thought _bstr_t has a BSTR operator converting from _bstr_t to BSTR, but looking at msdn there is no such operator defined.
How does it work when passign _bstr_t to BSTR parameter or _variant_t to VARIANT?