_bstr_t::wchar_t*、 _bstr_t::char*
Microsoft 固有の仕様 →
BSTR 文字をナロー文字配列またはワイド文字配列として返します。
operator const wchar_t*( ) const throw( );
operator wchar_t*( ) const throw( );
operator const char*( ) const;
operator char*( ) const;
解説
これらの演算子は BSTR オブジェクトによってカプセル化された文字データを抽出するために使用できます。返されたポインターに新しい値を割り当てると、元の BSTR データは変更されません。
END Microsoft 固有