home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / d / desklib / !DeskLib / h_doc / Hourglass < prev    next >
Encoding:
Text File  |  1996-09-25  |  1.1 KB  |  56 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 __Desk_Hourglass_h
  19. #define __Desk_Hourglass_h
  20.  
  21. #ifdef __cplusplus
  22.     extern "C" {
  23. #endif
  24.  
  25. extern void Desk_Hourglass_On(void);
  26. /*
  27. See PRMs 2-734
  28.  */
  29.  
  30. extern void Desk_Hourglass_Start(int startdelay);
  31. /*
  32. See PRMs 2-738
  33.  */
  34.  
  35. extern void Desk_Hourglass_Percentage(int percent);
  36. /*
  37. See PRMs 2-739
  38.  */
  39.  
  40. extern void Desk_Hourglass_Off(void);
  41. /*
  42. See PRMs 2-736
  43.  */
  44.  
  45. extern void Desk_Hourglass_Smash(void);
  46. /*
  47. See PRMs 2-737
  48.  */
  49.  
  50.  
  51. #ifdef __cplusplus
  52. }
  53. #endif
  54.  
  55. #endif
  56.