1,184
社区成员
发帖
与我相关
我的任务
分享
Retrieves the identifier of the process that created the window.
DWORD GetWindowProcessID( ) throw();
Remarks
See GetWindowThreadProcessID in the Windows SDK.
Example
Visual C++ Copy Code
//The following example attaches an HWND to the CWindow object and
//calls CWindow::GetWindowProcessID() to retrieve the id of the
//process that created the window
CWindow myWindow;
myWindow.Attach(hWnd);
DWORD dwID = myWindow.GetWindowProcessID();