首页
社区
课程
招聘
[求助]WDK中请问有GetForegroundWindow和GetWindowText功能的函数吗
发表于: 2010-1-6 10:53 4629

[求助]WDK中请问有GetForegroundWindow和GetWindowText功能的函数吗

2010-1-6 10:53
4629
GetForegroundWindow 获得最顶层窗口的句柄
GetWindowText 获得窗口名称

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (2)
雪    币: 202
活跃值: (10)
能力值: ( LV3,RANK:20 )
在线值:
发帖
回帖
粉丝
2
77D1BE4B >  B8 94110000     MOV EAX,1194
77D1BE50    BA 0003FE7F     MOV EDX,7FFE0300
77D1BE55    FF12            CALL DWORD PTR DS:[EDX]                  ; ntdll.KiFastSystemCall
77D1BE57    C3              RETN

GetForegroundWindow 这个调用了这个KiFastSystemCall。不过不知怎么进内核跟它是调用那个内核函数。。。。
2010-1-6 11:13
0
雪    币: 635
活跃值: (101)
能力值: ( LV12,RANK:420 )
在线值:
发帖
回帖
粉丝
3
可以用int 0x2e来执行NtUserGetForgroundWindow和NtUserInternatGetWindowText,不过参数缓存要通过ZwAllocateVirtualMemory申请user mode memory
2010-1-6 12:42
0
游客
登录 | 注册 方可回帖
返回
//