mirror of
https://gitlab.com/camelot/kickc.git
synced 2024-12-26 18:29:54 +00:00
Added scroll mode configuration to <conio.h>.
This commit is contained in:
parent
f7f9ef4a6c
commit
b2052e0ab4
@ -70,6 +70,11 @@ unsigned char kbhit (void);
|
|||||||
// The function returns the old cursor setting.
|
// The function returns the old cursor setting.
|
||||||
unsigned char cursor(unsigned char onoff);
|
unsigned char cursor(unsigned char onoff);
|
||||||
|
|
||||||
|
// If onoff is 1, scrolling is enabled when outputting past the end of the screen
|
||||||
|
// If onoff is 1, scrolling is disabled and the cursor instead moves to (0,0)
|
||||||
|
// The function returns the old scroll setting.
|
||||||
|
unsigned char scroll(unsigned char onoff);
|
||||||
|
|
||||||
// The horizontal line character
|
// The horizontal line character
|
||||||
const char CH_HLINE = 0x40;
|
const char CH_HLINE = 0x40;
|
||||||
// The vertical line character
|
// The vertical line character
|
||||||
|
Loading…
Reference in New Issue
Block a user