From: "Paul V." <[EMAIL PROTECTED]>
Subject: Errors in CW6
> Does anyone have an understandable explanation for what causes the
following errors?
> The code that generated the errors were supposedly good functions that
didn't have any bugs.
> ---------------------
> Error : illegal implicit conversion from 'void *' to 'FieldType *'
You are passing a variable of type 'void *' to a function that expects
something with type 'FieldType *'. The compiler can't do that for you
because there are no rules built in to it to describe how to convert a
pointer to void into a pointer to FieldType.
> --------------------
> Error : illegal implicit conversion from 'void **' to 'char **'
You are passing a variable of type 'void **' to a function that expects
something with type char **'. The compiler can't do that for you because
there are no rules built in to it to describe how to convert a pointer to a
pointer to a void into a pointer to a pointer to a char.
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/tech/support/forums/