mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
... start by fixing the include files and the fallout in C source from removing includes not directly needed by headers that previously included them.
19 lines
651 B
C
19 lines
651 B
C
#ifndef XSCROLL_H
|
|
#define XSCROLL_H 1
|
|
/************************************************************************/
|
|
/* */
|
|
/* xscroll.h */
|
|
/* */
|
|
/* Scrolling functions implemented in xscroll.c */
|
|
/* */
|
|
/************************************************************************/
|
|
#include "devif.h" /* for DspInterface */
|
|
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 */
|