IDebugThread2::GetThreadProperties
Pobiera właściwości opisujące ten wątek.
Składnia
Parametry
dwFields
[in] Kombinacja flag z wyliczenia THREADPROPERTY_FIELDS , która określa, które pola ptp
mają być wypełnione.
ptp
[in, out] Struktura THREADPROPERTIES wypełniona właściwościami wątku.
Wartość zwracana
Jeśli operacja powiedzie się, zwraca wartość S_OK
; w przeciwnym razie zwraca kod błędu.
Uwagi
Informacje zwrócone z tej metody są zwykle wyświetlane w oknie debugowania Wątki .
Przykład
W poniższym przykładzie pokazano, jak zaimplementować tę metodę dla prostego CProgram
obiektu, który implementuje interfejs IDebugThread2 .
HRESULT CProgram::GetThreadProperties(THREADPROPERTY_FIELDS dwFields,
THREADPROPERTIES *ptp)
{
HRESULT hr = E_FAIL;
// Check for valid argument.
if (ptp)
{
// Create an array of buffers at ptp the size of the
// THREADPROPERTIES structure and set all of the
// buffers at ptp to 0.
memset(ptp, 0, sizeof (THREADPROPERTIES));
// Check if there is a valid THREADPROPERTY_FIELDS and the TPF_ID flag is set.
if (dwFields & TPF_ID)
{
// Check for successful assignment of the current thread ID to
// the dwThreadId of the passed THREADPROPERTIES.
if (GetThreadId(&(ptp->dwThreadId)) == S_OK)
{
// Set the TPF_ID flag in the THREADPROPERTY_FIELDS enumerator
// of the passed THREADPROPERTIES.
ptp->dwFields |= TPF_ID;
}
}
hr = S_OK;
}
else
hr = E_INVALIDARG;
return hr;
}