2

问候,

我已经实现了一个低级键盘钩子,如此所述。这在 WinXP 下运行良好。问题是,在 Windows 7 下,左右 windows 键不再被拦截。

任何有关如何在 Windows 7 下重新获取这些密钥的建议都非常感谢!

干杯,

罗尼

4

2 回答 2

3

我已经建立了一个库,因为在许多情况下正常的挂钩对我不起作用,所以我建立了 ac 库来与引擎盖下的过滤器驱动程序进行通信,以完成设备输入拦截的​​工作。以下是如何使用此库捕获 Windows 密钥的示例:

#include <iostream>
#include <interception.h>
#include "utils.h" // for process priority control

const InterceptionKeyStroke windows_key_down = {91, INTERCEPTION_KEY_E0 | INTERCEPTION_KEY_DOWN};
const InterceptionKeyStroke windows_key_up = {91, INTERCEPTION_KEY_E0 | INTERCEPTION_KEY_UP};

bool operator == (const InterceptionKeyStroke &left, const InterceptionKeyStroke &right)
{
    return left.code == right.code && left.state == right.state;
}

int main()
{
    using namespace std;

    InterceptionContext context;
    InterceptionDevice device;
    InterceptionStroke stroke;

    raise_process_priority();

    context = interception_create_context();

    interception_set_filter(context, interception_is_keyboard, INTERCEPTION_FILTER_KEY_ALL);

    while(interception_receive(context, device = interception_wait(context), &stroke, 1) > 0)
    {
        InterceptionKeyStroke &keystroke = *(InterceptionKeyStroke *) &stroke;

        if(keystroke == windows_key_down)
            cout << "Windows Key Down" << endl;

        if(keystroke == windows_key_up)
            cout << "Windows Key Up" << endl;

        interception_send(context, device, &stroke, 1);
    }

    interception_destroy_context(context);

    return 0;
}

该示例捕获密钥并将其发送回操作系统,但您可以执行其他操作。

您可以在http://oblita.com/Interception查看更多文档。

于 2012-01-12T23:56:50.280 回答
1

查看适用于 Windows 7 的 Win Kernel SDK 并编写一个“驱动程序”来实现这一点。

于 2010-07-17T06:00:40.667 回答