Partilhar via


CWindow::GetWindowThreadID

Recupera o identificador do segmento que criou a janela especificada.

DWORD GetWindowThreadID( ) throw();

Comentários

Consulte GetWindowThreadProcessID em 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 de CWindow

CWindow::GetWindowProcessID