Partilhar via


CWindow::GetWindowThreadID

Recupera o identificador do thread que criou a janela especificada.

DWORD GetWindowThreadID( ) throw();

Comentários

See GetWindowThreadProcessID in the Windows SDK.

Exemplo

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::GetWindowThreadID() to retrieve the id of the thread 
//that created the window

CWindow myWindow;
myWindow.Attach(hWnd);
DWORD dwID = myWindow.GetWindowThreadID();

Requisitos

Cabeçalho: atlwin.h

Consulte também

Referência

Classe CWindow

CWindow::GetWindowProcessID

Outros recursos

CWindow membros