GetWindowThreadProcessId

 GetWindowThreadProcessId

编辑本段一、VC

  --------------------------------------------------------------------------------
  The GetWindowThreadProcessId function retrieves the identifier of the thread that created the specified window and, optionally, the identifier of the process that created the window.
   意译:
  找出某个窗口的创建者(线程或进程), 返回创建者的标志符
  哪个线程创建了这个窗口,返回的就是这个线程的id号 (进程只有一个线程的话,那么线程标志符与进程标志符就是指同一个标志符)
  可理解为找出某栋房屋的建筑工人的名字。

1.函数原型

   DWORD GetWindowThreadProcessId(
  HWND hWnd,
  LPDWORD lpdwProcessId
  );

2.参数

   hWnd [in] (向函数提供的)被查找窗口的 句柄.
   lpdwProcessId [out] 进程号的存放 地址(变量地址) Pointer to a variable that receives the process identifier. If this parameter is not NULL, GetWindowThreadProcessId copies the identifier of the process to the variable; otherwise, it does not. (如果参数不为NULL,即提供了存放处--变量,那么本函数把进程标志拷贝到存放处,否则不动作。)

3.返回值

   The return value is the identifier of the thread that created the window.
  返回线程号,注意, lpdwProcessId 是存放进程号的变量。返回值是线程号, lpdwProcessId 是进程号存放处。
   当然可以把答案再放到其它地方。如
  DWORD PID;
  PID=GetWindowThreadProcessId( hWnd, lpdwProcessId );

4.函数相关信息

  Header Declared in Winuser.h, include Windows.h
  Import library User32.lib
  Minimum operating systems Windows 95, Windows NT 3.1

编辑本段二、VB声明

  Declare Function GetWindowThreadProcessId Lib "user32" Alias "GetWindowThreadProcessId" (ByVal hwnd As Long, lpdwProcessId As Long) As Long

1、说明

  The GetWindowThreadProcessId function retrieves the identifier of the thread that created the specified window and, optionally, the identifier of the process that created the window
  这个函数获得指定线程的标识符,此线程创建了指定的窗口,并且随机的产生了这个标识符.

2、返回值

  Long,拥有窗口的线程的标识符

3、参数表

  参数 类型及说明
  lpdwProcessId Long,指定一个变量,用于装载拥有那个窗口的一个进程的标识符
  hwnd Long,指定窗口句柄
   delphi实例:
  var
  t: Thandle;
  begin
  t := FindWindow('Notepad2', nil);
  ShowMessage(IntToStr(t));
  memo1.lines.Add(IntToStr(GetWindowThreadProcessId(t, nil)));
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值