mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-15 15:57:13 +00:00
and used in xwinman.c Update function declarations from K&R style to new style. Fix incorrect argument counts for some procedure calls. new file: ../inc/xscroll.h modified: xscroll.c modified: xwinman.c
16 lines
549 B
C
16 lines
549 B
C
/************************************************************************/
|
|
/* */
|
|
/* xscroll.h */
|
|
/* */
|
|
/* Scrolling functions implemented in xscroll.c */
|
|
/* */
|
|
/************************************************************************/
|
|
|
|
void Scroll(DspInterface dsp, int newX, int newY);
|
|
void JumpScrollVer(DspInterface dsp, int y);
|
|
void JumpScrollHor(DspInterface dsp, int x);
|
|
void ScrollLeft(DspInterface dsp);
|
|
void ScrollRight(DspInterface dsp);
|
|
void ScrollUp(DspInterface dsp);
|
|
void ScrollDown(DspInterface dsp);
|