zoukankan      html  css  js  c++  java
  • SetWindowHookEx的复习

    #include <Windows.h>
    #include <iostream>
    
    using namespace std;
    
    HHOOK keyboardHook;
    
    LRESULT __stdcall KEYHookCallback(int nCode, WPARAM wParam, LPARAM lParam)
    {
        int num[] = { 0x41,0x42,0x43,0x44 ,0x45 ,0x46 ,0x47 ,0x48 ,0x49 ,0x4A ,0x4B ,0x4C ,0x4D ,0x4E ,0x4F,
                        0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,0x58,0x59,0x5A,0x20};
        const char *ch[] = { "A","B", "C", "D", "E", "F", "G", "H","I", "J", "K", "L", "M", "N",
                         "O","P", "Q", "R", "S", "T", "U" ,"V","W", "X", "Y", "Z"," "};
        if (nCode >= 0)
        {
            switch (wParam)
            {
            case WM_KEYDOWN:
            {
                HANDLE stdOut = GetStdHandle(STD_OUTPUT_HANDLE);
                DWORD written = 0;
                KBDLLHOOKSTRUCT* kbdStruct = (KBDLLHOOKSTRUCT*)lParam;
               
                if (stdOut == NULL || stdOut == INVALID_HANDLE_VALUE)
                {
                    cout << "error handle" << endl;
                    return 0;
                }
                POINT pntCurrentCursor;
                GetCursorPos(&pntCurrentCursor);
                HWND h = FindWindow("Notepad", NULL);
                HWND h2 = FindWindowEx(h, 0, "Edit", NULL);
                HWND h1 = WindowFromPoint(pntCurrentCursor);            
                if(h1 == h2)
                {                                                                 
                    for (int i = 0; i < sizeof(num) / sizeof(int); i++)
                    {
                        if (kbdStruct->vkCode == num[i])
                        {
                            WriteConsole(stdOut, ch[i], 1, &written, NULL);
                        }
                    }
                }                    
                return 1;
            }            
            }
        }
        return CallNextHookEx(keyboardHook, nCode, wParam, lParam);
    }
    
    void SetHook()
    {
        if (!(keyboardHook = SetWindowsHookEx(WH_KEYBOARD_LL, KEYHookCallback, NULL, 0)))
        {
            cout << "Failed to install keyboardHook hook!" << endl;
        }
    }
    
    void ReleaseHook()
    {
        UnhookWindowsHookEx(keyboardHook);
    }
    
    int main()
    {
        SetHook();
        MSG msg;
    
        while (GetMessage(&msg, NULL, 0, 0))
        {
            TranslateMessage(&msg);
            DispatchMessage(&msg);
        }
        ReleaseHook();
        return msg.wParam;
    }
  • 相关阅读:
    [LeetCode] 26 Remove Duplicates from Sorted Array
    归并排序
    插入排序
    选择排序
    冒泡排序
    单链表排序
    如何实现单链表反转
    Linux基础——centos 跳过管理员密码进行登录(单用户模式、救援模式)
    response.sendRedirect()与request.getRequestDispatcher().forward()区别
    json-lib——JsonConfig详细使用说明
  • 原文地址:https://www.cnblogs.com/strive-sun/p/12627057.html
Copyright © 2011-2022 走看看