Is开发者_StackOverflow社区 where any extension, for visual studio, to support intellisense for c++: win32api,mfc,atl whatever. Or its supported, and only i can not see it? Or any workaround or other IDE?
For example:
int main(){
Set
}
And here i want to see all available winapi functions, which starts from "Set". Is it possible?
In the following snippet:
#include <Windows.h>
int main ()
{
::Set
}
I get all completions for Win32 API functions starting with Set
. If you don't like having all those references to the global namespace, you can hit Control-Space to force intellisense to show completions.
That type of C++ intellisense only appears after you hit ctrl+space.
The commercial extension Visual Assist X gives an experience that may be more what you are looking for (note that it is not supported in express editions of Visual Studio).
精彩评论