Programming Guide



sm_c_on

Turns the cursor on

void sm_c_on(void);

Description

sm_c_on tells Panther that the normal cursor setting is on. The normal setting is in effect except under these circumstances:

If the display cannot turn its cursor on and off—CON and COF entries are not defined in the video file—this function has no effect.

Use sm_c_off to turn the cursor off.

Example

sm_ferr_reset(0, "Verify that the cursor is turned ON");
sm_c_off();
sm_femsg(0, "Verify that the cursor is turned OFF");
sm_c_on();
sm_femsg(0, "Verify that the cursor is turned ON");

See Also

sm_c_off