home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / gcc / !GCC / patches / DeskLib / h / Hourglass < prev    next >
Encoding:
Text File  |  1994-10-03  |  997 b   |  36 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    Hourglass.h
  12.     Author:  Copyright © 1993 Jason Howat
  13.     Version: 2.00 (24 Jul 1993)
  14.     Purpose: Hourglass module veneers
  15. */
  16.  
  17.  
  18. #ifndef __dl_hourglass_h
  19. #define __dl_hourglass_h
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24.  
  25. extern void Hourglass_On(void);
  26. extern void Hourglass_Start(int startdelay);
  27. extern void Hourglass_Percentage(int percent);
  28. extern void Hourglass_Off(void);
  29. extern void Hourglass_Smash(void);
  30.  
  31. #ifdef __cplusplus
  32.            }
  33. #endif
  34.  
  35. #endif
  36.