int testfunc(int a);
int main(int argc, char *argv[])
{
test<ctrl+space>
return 0;
}
--
on ctrl+space - doesn't give any tip unless I added the
function on the bottom:
--
int testfunc(int a);
int main(int argc, char *argv[])
{
test<ctrl+space>
return 0;
}
int testfunc(int a)
{
return 0;
}
--
Now it shows the testfunc in the list. But if I instead do:
--
int testfunc(int a);
int main(int argc, char *argv[])
{
other<ctrl+space>
return 0;
}
int testfunc(int a)
{
return 0;
}
--
other<ctrl+space> doesn't ever show me the otherfunc -
which is just an alias to testfunc.
a better example would be to include <windows.h> and
typing MessageBo<ctrl+space> - autocompletion should
suggest MessageBoxA, MessageBoxW AND MessageBox (which
is in #define) - instead it suggests just the first two.
MessageBox is defined:
int WINAPI MessageBoxA(HWND,LPCSTR,LPCSTR,UINT);