如何以编程方式从进程,HWND获取句柄ID?

时间:2013-09-10 21:37:01

标签: c hwnd

我尝试获取打开的应用程序(窗口)的句柄ID。

我运行Window detective程序(如spy ++)来验证我是否获得了正确的值。

为了进行测试,我尝试只获得一个红色箭头指向的句柄ID(参见图像):

enter image description here

所以我有程序给我进程ID和线程ID但不是第一个子句柄ID。

在我的情况下,我使用calc.exe,但实际上我需要为所有exe应用程序执行此操作:

readWindow.c

#include <windows.h>
#include <stdio.h>
#include <stddef.h>
#include <inttypes.h>
#include <tchar.h> 
#include <psapi.h> 

HMODULE getModulePid(DWORD processID, char* searchStr){ // gets the module by the module name from an explicit process

   HANDLE hProcess;
   HMODULE hMods[1024];
   TCHAR szModName[MAX_PATH];
   DWORD cbNeeded;

   if(hProcess = OpenProcess( PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, processID ))
   {
    if(EnumProcessModules(hProcess, hMods, sizeof(hMods), &cbNeeded))
    {
    unsigned int k;
    for(k = 0; k < (cbNeeded / sizeof(HMODULE)); ++k )
    {
        if (GetModuleFileNameEx(hProcess, hMods[k], szModName,  sizeof(szModName)/sizeof(TCHAR)))
        {

        //printf( "fess pid: %u modname: %s\n", processID, szModName );

        if(strstr(szModName, searchStr))
        {
            printf( "pid: &#37;u modname: %s\n", processID, szModName );
            CloseHandle( hProcess );
            return hMods[k];
        }
       }
    }//for
  }     
}  
    CloseHandle( hProcess );
    return NULL;
}

HMODULE getModule(char* searchStr){ // gets the module by the modul name from all processes
   DWORD aProcesses[1024], cbNeeded, cProcesses;

    if ( !EnumProcesses( aProcesses, sizeof(aProcesses), &cbNeeded ) ) return NULL;
    cProcesses = cbNeeded / sizeof(DWORD);

    HMODULE hmodule;
    unsigned int i;
    for (i = 0; i < cProcesses; ++i )
    {
        if(hmodule = getModulePid(aProcesses[i], searchStr))
         {
         return hmodule;
          }
         }
    return NULL;
}


HMODULE getModuleHwnd(HWND hwnd){ // gets the module from a window
   DWORD pid;
   DWORD tid = GetWindowThreadProcessId(hwnd, &pid ); // !!??!!
   printf( "hwnd tid: %u\n", tid  );
    printf( "hwnd pid: %u\n", pid  );
   return getModulePid(pid, ".exe");
}

HMODULE hModuleT;
char* searchStrT;

BOOL CALLBACK shownWindow(HWND hwnd, LPARAM lParam){ // EnumWindows callback
   if(hModuleT) return TRUE;

    char pcWinTitle[256];

    if(GetWindow(hwnd, GW_OWNER)) return TRUE; // whats that?
    GetWindowText(hwnd, pcWinTitle, 1024);
    if(strstr(pcWinTitle, searchStrT)){  
        printf( "wndtitle: %s\n", pcWinTitle);                                      
        hModuleT = getModuleHwnd(hwnd);
    }

    return TRUE;
}

HMODULE getModuleByWndTitle(char* searchStr){ // gets the module from a window title
    searchStrT = searchStr;
    EnumWindows(shownWindow, 0);
    return hModuleT;
}


int main()
{

    //EnumWindows(EnumWindowsProc, 0);

    printf("find by name ... \n");
     getModule("calc.exe");
     printf("\nfind by title ... \n");
   getModuleByWndTitle("Calculator");

    printf("Done");


    return 0;
} 

minGW运行:

  

$ gcc -L / local / lib -I / local / include -o readWindow readWindow.c -lpsapi

输出:

find by title ...
wndtitle: Calculator
hwnd tid: 33364
hwnd pid: 25440
Done

如何从流程中获取句柄?

我确定它应该是1-2行代码。

DWORD dwValue .....

printf("The value in hexa: 0X%.8X(%d).\n", dwValue);

应为0x007B137C

从Spy ++我需要这个值,红色箭头:

enter image description here

1 个答案:

答案 0 :(得分:1)

这很容易,但对我来说有点棘手。

我只需要用HWND hwnd打印指针%p

所以我添加到我的代码中:

char szBuff[512];
sprintf(szBuff, "%p", hwnd);

printf( "Found .... hWnd: %s\n", szBuff); 

得到我需要的东西:

Found .... hWnd: 007B137C

<强> [编辑]

工作代码示例:

<强> readWindow.c

#include <windows.h>
#include <stdio.h>
#include <stddef.h>
#include <inttypes.h>
#include <tchar.h> 
#include <psapi.h> 

HMODULE getModulePid(DWORD processID, char* searchStr){ // gets the module by the module name from an explicit process

   HANDLE hProcess;
   HMODULE hMods[1024];
   TCHAR szModName[MAX_PATH];
   DWORD cbNeeded;

   if(hProcess = OpenProcess( PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, processID ))
   {
    if(EnumProcessModules(hProcess, hMods, sizeof(hMods), &cbNeeded))
    {
    unsigned int k;
    for(k = 0; k < (cbNeeded / sizeof(HMODULE)); ++k )
    {
        if (GetModuleFileNameEx(hProcess, hMods[k], szModName,  sizeof(szModName)/sizeof(TCHAR)))
        {

        //printf( "fess pid: %u modname: %s\n", processID, szModName );

        if(strstr(szModName, searchStr))
        {
            printf( "pid: &#37;u modname: %s\n", processID, szModName );
            CloseHandle( hProcess );
            return hMods[k];
        }
       }
    }//for
  }     
}  
    CloseHandle( hProcess );
    return NULL;
}

HMODULE getModule(char* searchStr){ // gets the module by the modul name from all processes
   DWORD aProcesses[1024], cbNeeded, cProcesses;

    if ( !EnumProcesses( aProcesses, sizeof(aProcesses), &cbNeeded ) ) return NULL;
    cProcesses = cbNeeded / sizeof(DWORD);

    HMODULE hmodule;
    unsigned int i;
    for (i = 0; i < cProcesses; ++i )
    {
        if(hmodule = getModulePid(aProcesses[i], searchStr))
         {
         return hmodule;
          }
         }
    return NULL;
}


HMODULE getModuleHwnd(HWND hwnd){ // gets the module from a window
   DWORD pid;
   DWORD tid = GetWindowThreadProcessId(hwnd, &pid ); // !!??!!
   printf( "hwnd tid: %u\n", tid  );
    printf( "hwnd pid: %u\n", pid  );
   return getModulePid(pid, ".exe");
}

HMODULE hModuleT;
char* searchStrT;

BOOL CALLBACK shownWindow(HWND hwnd, LPARAM lParam){ // EnumWindows callback
   if(hModuleT) return TRUE;

    char pcWinTitle[256];

    if(GetWindow(hwnd, GW_OWNER)) return TRUE; // whats that?
    GetWindowText(hwnd, pcWinTitle, 1024);

    if(strstr(pcWinTitle, searchStrT))
    {  
        printf( "wndtitle: %s\n", pcWinTitle);                                      
        hModuleT = getModuleHwnd(hwnd);

        char szBuff[512];
       sprintf(szBuff, "%p", hwnd);

       printf( "Found .... hWnd: %s\n", szBuff); 

    }

    return TRUE;
}

HMODULE getModuleByWndTitle(char* searchStr){ // gets the module from a window title
    searchStrT = searchStr;
    EnumWindows(shownWindow, 0);
    return hModuleT;
}


int main()
{

    //EnumWindows(EnumWindowsProc, 0);

    printf("find by name ... \n");
     getModule("calc.exe");
     printf("\nfind by title ... \n");
   getModuleByWndTitle("Calculator");

    printf("Done");


    return 0;
}