Marc wrote:

struct QuestionStruct;
typedef struct QuestionStruct
{
Char* text;
QuestionStruct* answeryes;
QuestionStruct* answerno;
}QuestionStruct;


The typedef isn't complete yet.  Instead, do the following:

typedef struct QuestionStruct
{
   Char   *text;
   struct QuestionStruct   *answeryes;
   struct QuestionStruct   *answerno;
} QuestionStruct;

--
Wade
[EMAIL PROTECTED]



--
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/

Reply via email to