Partager via


CComBSTR::AppendBytes

Ajoute le nombre d'octets spécifié à m_str sans conversion.

HRESULT AppendBytes(
   const char* lpsz,
   int nLen
) throw( );

Paramètres

  • lpsz
    [in] Pointeur vers un tableau d'octets à ajouter.

  • p
    [in] le nombre d'octets à ajouter.

Valeur de retour

S_OK en cas de réussite, ou une valeur d'erreur standard d' HRESULT .

Exemple

CComBSTR bstrPre(OLESTR("Hello "));
HRESULT hr;

// Appends "Wo" to "Hello " (4 bytes == 2 characters)
hr = bstrPre.AppendBytes(reinterpret_cast<char*>(OLESTR("World!")), 4);

// Displays a message box with text "Hello Wo"
::MessageBox(NULL, CW2CT(bstrPre), NULL, MB_OK);   

Configuration requise

Header: atlbase.h

Voir aussi

Référence

Classe CComBSTR

CComBSTR::Append

CComBSTR::operator +=

CComBSTR::operator +=