-----------------------
#if defined(FROG_PPC)
DeviceToLogical( P );
#endif
-----------------------
DeviceToLogical() function checks orientation and corrects x and y coordinates. Thanks to
#if defined(FROG_PPC)
it wouldn't work anyway. Simpliest solution is to delete or to quote that if. Still, that would couse coordinates swaping even in XP, and that is not good/ So better try this:
-----------------------
#if defined(_WIN32_WCE)
DeviceToLogical( P );
#endif
-----------------------
ps. русский пост
