作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个小程序来运行 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;
}
最佳答案
两个问题:
GetCPInfo
。请记住,语言区分大小写。您需要具备以下条件:
CPINFO cpinfo;
bool succeeded = GetCPInfo(37, &cpinfo);
关于c++ - 使用 GetCpInfo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31708511/
我正在尝试编写一个小程序来运行 GetCpInfo,但我收到一个标识符未找到的错误。我包括 windows.h 并使用 visual studio。当我输入 GetCp 时,IntelliSense
我是一名优秀的程序员,十分优秀!