which version did this used to work in? trying VS2003 and VA 1446 with the sample code:
static int getCounter()
{
typedef void (*func_pointer)( long );
func_pointer fptr;
(*fptr)(|);
return 2;
}
if i press CTRL-SPACE here then nothing happens, i am not given any parameter help. i tend not to use function pointers in my code, so i may have overlooked something obvious.