> From: Laor, Boaz
>
> Error: cannot convert 'int' to 'void *' MainForm.c line 2304
> hrecord = DmNewRecord(accountDB,&cursorAccountDB,sizeof(accountRec));
>

That message means you passed in an int where it expected void *, a pointer.
The first parameter, accountDB, is supposed to be a pointer to an open DB,
type DmOpenRef, which is just a typedef to void *.


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

Reply via email to