Condividi tramite


IDebugFunctionObject:: CreateStringObject

crea un oggetto stringa.

HRESULT CreateStringObject( 
   LPCOLESTR      pcstrString,
   IDebugObject** ppObject
);
int CreateStringObject(
   string      pcstrString, 
   out IDebugObject ppOjbect
);

Parametri

  • pcstrString
    [in] il valore stringa per l'oggetto stringa.

  • ppObject
    [out] Restituisce IDebugObject un oggetto che rappresenta l'oggetto stringa appena creato.

Valore restituito

Se l'operazione riesce, restituisce S_OK, in caso contrario, restituisce un codice di errore.

Note

Chiamare questo metodo per creare un oggetto che rappresenta una stringa che è un parametro alla funzione che è rappresentata IDebugFunctionObject dall'interfaccia.

Vedere anche

Riferimenti

IDebugFunctionObject