gpt4 book ai didi

c++ - 获取控制台句柄

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:27:03 26 4
gpt4 key购买 nike

如何获取外部应用程序的控制台句柄?

我有一个作为控制台运行的程序。我有一个将调用 GetConsoleScreenBufferInfo 的第二个程序,但为此我需要第一个程序的控制台句柄。是否有可能给出第一个程序的 HWND 我可以获得它的控制台句柄?

最佳答案

如果您只有 HWND,请调用 GetWindowThreadProcessId从给定的 HWND 获取 PID。之后,调用AttachConsole将调用进程附加到给定进程的控制台,然后调用 GetStdHandle获取新连接的控制台的 STDOUT 句柄。您现在可以调用 GetConsoleScreenBufferInfo使用那个句柄。

记得清理,通过调用 FreeConsole 释放控制台的句柄。

编辑:这是该帖子的一些 C++ 代码

#include <sstream>
#include <windows.h>

// ...
// assuming hwnd contains the HWND to your target window

if (IsWindow(hwnd))
{
DWORD process_id = 0;
GetWindowThreadProcessId(hwnd, &process_id);
if (AttachConsole(process_id))
{
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
if (hStdOut != NULL)
{
CONSOLE_SCREEN_BUFFER_INFO console_buffer_info = {0};
if (GetConsoleScreenBufferInfo(hStdOut, &console_buffer_info))
{
std::stringstream cursor_coordinates;
cursor_coordinates << console_buffer_info.dwCursorPosition.X << ", " << console_buffer_info.dwCursorPosition.Y;
MessageBox(HWND_DESKTOP, cursor_coordinates.str().c_str(), "Cursor Coordinates:", MB_OK);
}
}
else
{
// error handling
}
FreeConsole();
}
else
{
// error handling
}
}

关于c++ - 获取控制台句柄,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3859276/

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