It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center。
9年前关闭。
Visual Studio的任何扩展都支持C++的intellisense:
win32api,mfc,atl等。或它的支持,只有我看不到它?
还是任何解决方法或其他IDE?
例如:
在这里,我想查看所有可用的winapi函数,这些函数从“设置”开始。可能吗?
我获得了以
9年前关闭。
Visual Studio的任何扩展都支持C++的intellisense:
win32api,mfc,atl等。或它的支持,只有我看不到它?
还是任何解决方法或其他IDE?
例如:
int main(){
Set
}
在这里,我想查看所有可用的winapi函数,这些函数从“设置”开始。可能吗?
最佳答案
在以下代码段中:
#include <Windows.h>
int main ()
{
::Set
}
我获得了以
Set
开头的Win32 API函数的所有完成内容。如果您不喜欢所有对全局 namespace 的引用,则可以单击Control-Space来强制intellisense显示完成。关于c++ - VS2010 C++ Win32 API智能感知,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7539813/
10-11 23:04