mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-15 15:57:13 +00:00
As a prerequisite for cleaning up some other include issues, all the include files in inc/ should have an include guard. All the xxxdefs.h were created with them, but most older files were not.
19 lines
610 B
C
19 lines
610 B
C
#ifndef XSCROLL_H
|
|
#define XSCROLL_H 1
|
|
/************************************************************************/
|
|
/* */
|
|
/* 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);
|
|
#endif /* XSCROLL_H */
|