Intellisense not working for typedef structs
Posted: Thu Jun 02, 2011 4:11 am
Zeus 3.97e Windows 7
Intellisense does not seem to be working for typedef struct names. This seems to be the same type of issue as discussed here: http://www.zeusedit.com/zforum/viewtopic.php?t=29
Here is a sample:
I tried copying the latest ctags.exe from http://ctags.sourceforge.net and replacing xtags.exe but the problem persists.
Am I missing something?
Ben
Intellisense does not seem to be working for typedef struct names. This seems to be the same type of issue as discussed here: http://www.zeusedit.com/zforum/viewtopic.php?t=29
Here is a sample:
Code: Select all
typedef struct _mystruct
{
int member;
}MyStruct;
void main ( void )
{
struct _mystruct _ms;
MyStruct ms;
_ms. // Triggers intellisense
ms. // Does not trigger intellisense
}
Am I missing something?
Ben