Winapi: getwindowthreadprocessid-get the process ID or thread ID of the specified window

Source: Internet
Author: User
// Declaration: getwindowthreadprocessid (hwnd: hwnd; {specify the window handle} lpdwprocessid: pointer = nil {pointer to the returned process ID}): DWORD; {return thread ID}

 // Example: Unit unit1; interfaceuses windows, messages, sysutils, variants, classes, graphics, controls, forms, dialogs, stdctrls, grids; Type tform1 = Class (tform) procedure formcreate (Sender: tobject); end; var form1: tform1; implementation {$ R *. DFM} procedure tform1.formcreate (Sender: tobject); var C: Cardinal; begin getwindowthreadprocessid (handle, @ C); showmessage (inttostr (c); {2792; random} {result equivalent to getcurrentprocessid in this example} C: = getcurrentprocessid; showmessage (inttostr (c); {2792} C: = getwindowthreadprocessid (handle, nil ); showmessage (inttostr (c); {2748} {result equivalent to getcurrentthreadid in this example} C: = getcurrentthreadid; showmessage (inttostr (c); {2748} end; end.

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.