2

我有下面的代码,我试图从活动窗口中获取选定的文本并将其打印到控制台上。

DWORD new12=0;
KEYBDINPUT* input = new KEYBDINPUT[key_count];
    if( GetGUIThreadInfo( new12, lpgui ) )
{
    target_window = lpgui->hwndFocus;
}
else
{
   // You can get more information on why the function failed by calling
   // the win32 function, GetLastError().
   std::cout<<"error1";
}
// We're sending two keys CONTROL and 'V'. Since keydown and keyup are two
// seperate messages, we multiply that number by two.

for( int i = 0; i < key_count; i++ )
{
    input[i].dwFlags = 0;
    //input[i].type = INPUT_KEYBOARD;
}

input[0].wVk = VK_CONTROL;
input[0].wScan = MapVirtualKey( VK_CONTROL, MAPVK_VK_TO_VSC );
input[1].wVk = 0x56; // Virtual key code for 'v'
input[1].wScan = MapVirtualKey( 0x56, MAPVK_VK_TO_VSC );

我有上面的 c++ 代码,但它似乎给出了一个错误,说“ error: MAPVK_VK_TO_VSC' was not declared in this scope”在input[0].wScan = MapVirtualKey( VK_CONTROL, MAPVK_VK_TO_VSC ); 我想知道这里有什么问题。我不认为由于任何声明问题而弹出此错误。你能帮帮我吗?谢谢你。

4

1 回答 1

3

MAPVK_VK_TO_VSC 是一个简单的#define MAPVK_VK_TO_VSC (0),甚至不是一个常量,所以它应该在预处理阶段解决。

要么您错过了在此代码之前包含“winuser.h”(在这种情况下 MapVirtualKey 和 VK_ 常量也将未声明),或者您在某处未定义 WIN_VER(或将其定义为小于 0x400)。有时很容易忘记 WIN_VER 必须以十六进制定义,并且使用 #define WINVER 500 之类的东西,您的版本低于 2.0

于 2013-05-12T22:29:45.960 回答