gpt4 book ai didi

c++ - 在 C++ 中找不到窗口

转载 作者:行者123 更新时间:2023-11-30 04:55:04 25 4
gpt4 key购买 nike

我是 C++ 的新手,我正在为刺客信条奥德赛做 hack,但是我无法让我的代码找到窗口。

HWND hwnd = FindWindowA(NULL,  "Assassin's Creed® Odyssey");

窗口名称:

image

编辑:让它工作,撇号与普通撇号不同,对于任何需要它的人来说,这是正确的窗口名称 Assassin's Creed® Odyssey

最佳答案

啊。 FindWindowA 需要一个 ANSI 字符串。要在 Microsoft Windows 中使用 ®,您应该使用 wstring 变体,并使用 wstring 文字:

HWND hwnd = FindWindowW(NULL, L"Assassin's Creed® Odyssey");

请检查您使用的撇号类型是否正确。我无法从屏幕截图中判断它是 ANSI 撇号还是右单引号。

"之前的 L 表示它是一个 wstring。在 Windows 计算机中,这几乎是 UTF-16,尽管 Microsoft Windows 并不完全符合所有 UTF-16 标准。

参见 https://en.cppreference.com/w/cpp/language/string_literal有关各种类型的字符串文字的更多信息。

这篇微软文章:https://learn.microsoft.com/en-us/windows/desktop/learnwin32/working-with-strings ,解释了 ANSI 函数(以“A”结尾)和 Unicode 函数(以“W”结尾)之间的区别。

关于c++ - 在 C++ 中找不到窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53292124/

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