我正在尝试获取Windows的句柄。然后,我试图获取每个句柄的关联进程ID。但是不知何故,我神奇地获得了process_id。请在这里指导我。

如果尝试使用GetWindowThreadProcessId()函数初始化process_id,则会遇到运行时错误。
但是,如果我注释掉那部分代码并在两个printf()函数中让process_id打印,程序将成功运行,显示数据并干净地退出。这里应该是垃圾值。

#include <stdio.h>
#include <windows.h>

WNDENUMPROC DisplayData(HWND str, LPARAM p) {
    LPDWORD process_id;
    DWORD P_ID;
    printf("PID :: %x\n", process_id);

    //this is where error occurs
    //P_ID = GetWindowThreadProcessId(str, process_id);

    printf("Found: %x, P_ID: %x\n", str, process_id);
    return TRUE;
}

int main() {
    EnumWindows( (WNDENUMPROC) DisplayData, 1);
    return 0;
}

最佳答案

#include <stdio.h>
#include <windows.h>

LPDWORD target = (LPDWORD) 0;  // Replace 0 with PID of the task from taskmgr.
HWND target_handle = NULL;  // stores the handle of the target process

WNDENUMPROC DisplayData(HWND str, LPARAM p) {
    LPDWORD thread_id;
    DWORD process_id;
    char title[30];

    GetWindowTextA(str, (LPSTR) &title, 29);
    process_id = GetWindowThreadProcessId(str, (PDWORD) &thread_id);

    if( thread_id == target & IsWindowVisible(str) ) {
        // Target thread with associated handle
        // printf("Handle Addr: %lu, Thread ID: %lu, Process ID: %lu, Title: %s\n", str, thread_id, process_id, title );
        target_handle = str;
    }

    return TRUE;
}

int main() {
    EnumWindows( (WNDENUMPROC) DisplayData, 1);

    ShowWindow(target_handle, SW_HIDE);
    Sleep(1000);
    ShowWindow(target_handle, SW_SHOW);

    return 0;
}


此代码显示的线程ID是在任务管理器中显示为PID的线程ID。正如需要的那样,target_handle变量包含在执行EnumWindows()函数之后的句柄地址。

关于c - 通过EnumWindows获取进程ID…有人可以向我解释为什么此代码有效吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54733424/

10-09 06:47