home *** CD-ROM | disk | FTP | other *** search
/ Aminet 10 / aminetcdnumber101996.iso / Aminet / dev / src / wavetools_dev.lha / wavetools / DadMon / Interface.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-11  |  539 b   |  17 lines

  1. /*
  2. ** Available routines
  3. ** The only way to quit is closing the window
  4. ** the main prog checks in from time to time via
  5. ** UpdateFace and could be told then if user has closed window
  6. ** ie. returns -1.
  7. */
  8.  
  9. struct MsgPort *OpenFace( WORD WIN_LEFT,  WORD WIN_TOP,  WORD WIN_WIDTH, WORD WIN_HEIGHT);    /* open the interface, it returns a UserPort */
  10.  
  11. void MoveFace(WORD left_sample,WORD right_sample);         /* scroll window, draw new lines, */
  12.  
  13. void FreshFace(void);            /* just redraw face */
  14.  
  15. void CloseFace(void);             /* close window and such */
  16.  
  17.