久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

【玩具代碼】用C 獲取窗體進程對應的PID

 阿鋼avckkrh3m1 2022-12-03 發(fā)布于重慶

桌面上莫名其妙彈出來彈窗,,光關掉可不行,,還得知道是哪個進程搞的鬼。

用C++(Windows API)寫一段小小的代碼,,獲取鼠標所在位置窗口的句柄,,進而得到對應的 PID,代碼很簡單,,就不做解釋了,。

#include <Windows.h>
#include <iostream>
#include <cstdio>
using namespace std;

POINT lastCursorPos;
POINT CursorPos;
HWND hWnd;
char line[100] = '\0';
int len = 0;

DWORD GetPIDFromCursor(POINT &CursorPos)
{
    //從鼠標位置獲取當前窗體的句柄
    hWnd = WindowFromPoint(CursorPos);
    if (NULL == hWnd)
    {
        // cout << '\nNo window exists at the given point!' << endl;
        return 0;
    }

    //獲取窗體句柄的pid
    DWORD dwProcId;
    GetWindowThreadProcessId(hWnd, &dwProcId);
    return dwProcId;
}


bool equal(const POINT &p1, const POINT &p2)
{
    if (p1.x == p2.x && p1.y == p2.y)
        return true;
    else
        return false;
}

void ClearLine()
{
    strset(line, ' ');
    printf('\r%s\r', line);
}

int main()
{
    bool go = true;
    int pid;
    while (go)
    {
        GetCursorPos(&CursorPos);
        if (!equal(CursorPos, lastCursorPos))
        {
            pid = GetPIDFromCursor(CursorPos);
            //動態(tài)更新一行的內容
            ClearLine();
            sprintf(line, 'Position=(%d, %d), PID = %d', CursorPos.x, CursorPos.y, pid);
            cout << line;
            lastCursorPos = CursorPos;
        }
    }
    // CloseWindow(hWnd);
    return 0;
}

編譯好運行程序。

效果如下:
在這里插入圖片描述

    本站是提供個人知識管理的網絡存儲空間,所有內容均由用戶發(fā)布,,不代表本站觀點,。請注意甄別內容中的聯系方式、誘導購買等信息,,謹防詐騙,。如發(fā)現有害或侵權內容,請點擊一鍵舉報,。
    轉藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多