_bstr_t::copy
Spécifique à Microsoft
construit une copie d' BSTRencapsulé.
BSTR copy(
bool fCopy = true
) const;
Paramètres
- fCopy
Si true, copie retourne une copie d' BSTRcontenu, sinon copie retourne un BSTR réel.
Notes
Retourne une copie nouvellement alloué de l'objet encapsulé d' BSTR .
Exemple
STDMETHODIMP CAlertMsg::get_ConnectionStr(BSTR *pVal){ // m_bsConStr is _bstr_t
*pVal = m_bsConStr.copy();
}
détail de FIN Microsoft