Programming for Palm OS/C
From Wikibooks, the open-content textbooks collection
[edit] generic useful bits
To sleep for period milliseconds (typically only to 10ms precision):
SysTaskDelay( SysTicksPerSecond() * period / 1000);
To find the resolution of the screen:
Coord screenWidth, screenHeight; WinGetDisplayExtent( &screenWidth, &screenHeight);