I'm calling the below (from the hardball example) with

DrawBitmap(1100,20,20);  

it gives 
illegal implicit conversion from 'void**' to 'char**'
Obviously, I'm doing something dumb, but what?



static void DrawBitmap(Int resID, Short x, Short y)
{
 Handle  resH;
 BitmapPtr resP;


 resH = DmGetResource( bitmapRsc, resID );
 ErrFatalDisplayIf( !resH, "Missing bitmap" );
 resP = MemHandleLock(resH);
 WinDrawBitmap (resP, x, y);
 MemPtrUnlock(resP);
 DmReleaseResource( resH );
}



-- 
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