gpt4 book ai didi

c++ - 如何在不使用键盘的情况下按键盘上的键?

转载 作者:行者123 更新时间:2023-11-28 08:29:50 25 4
gpt4 key购买 nike

我希望我的程序无需我亲自操作即可按下键盘上的某些键。

我该怎么做?

编辑: 找到了这个 keybd_event() 函数。似乎在工作 http://www.codeproject.com/KB/cpp/sendkeys_cpp_Article.aspx

最佳答案

SendInput可以生成击键和其他类型输入的函数。我曾经创建过类似于虚拟键盘的应用程序。

使用 Unicode 的示例:

// This may be needed
// #define _WIN32_WINNT 0x0501

#include <windows.h>
#include <winuser.h>

void pressKey(WORD a_unicode)
{
KEYBDINPUT kbinput;
ZeroMemory(&kbinput, sizeof(kbinput));
kbinput.wScan = a_unicode;
kbinput.dwFlags = KEYEVENTF_UNICODE;
kbinput.time = 0;

INPUT input;
ZeroMemory(&input, sizeof(input));
input.type = INPUT_KEYBOARD;
input.ki = kbinput;

SendInput(1, &input, sizeof(input));
}

关于c++ - 如何在不使用键盘的情况下按键盘上的键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2659841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com