gpt4 book ai didi

c++ - findwindow 不工作 C++

转载 作者:太空宇宙 更新时间:2023-11-04 16:08:36 27 4
gpt4 key购买 nike

所以我试图创建一个迷彩解锁器,但我从来没有遇到过通过 findwindow 获取进程 ID 的问题

但现在我试图找到 black ops 2 的 proc id 但窗口名称不起作用

使命召唤®:黑色行动 II

代码:

#include <iostream>
#include <Windows.h>
#include <tchar.h>

using namespace std;

int main(){

HWND hWnd = FindWindow(0, _T("Call of Duty®: Black Ops II - Multiplayer"));

if(hWnd){
cout << "window found" << endl;
}

return 0;
}

最佳答案

看起来注册的符号可能是 unicode,您需要使用 FindWindowW() :

Unicode and ANSI names
FindWindowW (Unicode) and FindWindowA (ANSI)

或者,您可以使用 FindWindowEx()并搜索窗口类名称。

关于c++ - findwindow 不工作 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31407584/

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