gpt4 book ai didi

c++ - 使用 GetCpInfo

转载 作者:行者123 更新时间:2023-11-28 06:08:53 24 4
gpt4 key购买 nike

我正在尝试编写一个小程序来运行 GetCpInfo,但我收到一个标识符未找到的错误。我包括 windows.h 并使用 visual studio。当我输入 GetCp 时,IntelliSense 会为我自动完成。这是我的代码。

#include <iostream>
#include <windows.h>

using namespace std;




int main()
{
LPCPINFO cpinfo;
cout << "Hello World!" << endl;
bool test = GetCpInfo(37, cpinfo);
int x;
cin>>x;

return 0;
}

最佳答案

两个问题:

  1. 函数名为GetCPInfo。请记住,语言区分大小写。
  2. 您正在传递一个未初始化的指针。

您需要具备以下条件:

CPINFO cpinfo;
bool succeeded = GetCPInfo(37, &cpinfo);

关于c++ - 使用 GetCpInfo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31708511/

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