home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Snippets / BeachBall / BeachBall.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-10  |  521 b   |  20 lines  |  [TEXT/KAHL]

  1. /******************************************************************
  2.  
  3. BeachBall.h
  4. Routines for asynchronous spinning beach-ball cursor
  5.  
  6. ******************************************************************/
  7.  
  8.  
  9. #ifndef __BEACHBALL_H_
  10. #define __BEACHBALL_H_
  11.  
  12. #define bbAcurID         128        //'acur' resource found in BeachBall.rsrc
  13.  
  14. OSErr StartBeachBall (short acurID, Boolean vblInstall, long vblTimeOut);
  15. void StopBeachBall (void);
  16. void ReverseBeachBall (void);
  17. void SpinBeachBall (void);
  18. void KeepSpinning (long vblTimeOut);
  19.  
  20. #endif