Hi,
[Visual Assist X 10.6.1854.0, VS 2008, Win7]
if you delete the red line, then you can resolve TEST struct variables (when you press "." you can see a/b variables). If you leave the read line in source code, then VA isn't able to offer TEST's variables.
Thanks,
Petr Kurtin
#define CONFIG_ENABLE_SNXREG            0x00000001	// enable registry virtualization
#define CONFIG_ENABLE_SAFEZONE_SANDBOX  0x00400000	// enable SafeZone virtualization
#define CONFIG_DEFAULT	CONFIG_ENABLE_SNXREG | \			/*CONFIG_ENABLE_OBJ_HOOKS | CONFIG_ENABLE_OBJ_LOGGING | \\*/ \\
			CONFIG_ENABLE_SAFEZONE_SANDBOX
typedef struct _TEST {
	int a;
	int b;
} TEST, *PTEST;
TEST test = {0};
int APIENTRY _tWinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow )
{
	test.
	return 0;
}