home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 580a.lha / HDFView_v3.01 / source.LZH / source / src / scroll.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-19  |  354 b   |  24 lines

  1. #include <exec/types.h>
  2. #include <intuition/intuition.h>
  3. #include <proto/intuition.h>
  4. #include <proto/exec.h>
  5.  
  6.  
  7. VOID scrollUp(struct Screen *s, int top)
  8. {
  9.       int pos;
  10.       pos=s->TopEdge;
  11.       
  12.       MoveScreen(s,0,top-pos);
  13. }
  14.  
  15. VOID scrollDown(struct Screen *s, int top)
  16. {
  17.    int pos;
  18.    pos=s->TopEdge;
  19.    
  20.    MoveScreen(s,0,top-pos);
  21.    
  22. }
  23.      
  24.