HI,
I have the problem that i need the following struct construction:

Code:
typedef struct {	
   struct NODE *node;	
   struct LINK *next;	
} LINK;

typedef struct {	
   LINK *child;	
   struct NODE *next;	
} NODE;



it would compile in C but NOT in lite-C. For the NODE definition in LINK struct it says:

unknown word NODE(struct)

Can someone help me?

Greets
Rackscha


MY Website with news of my projects:
(for example my current
Muliplayer Bomberman,
GenesisPrecompiler for LiteC
and TileMaster, an easy to use Tile editor)
Sparetime-Development