/*
    ####             #    #     # #
    #   #            #    #       #          The FreeWare C library for 
    #   #  ##   ###  #  # #     # ###             RISC OS machines
    #   # #  # #     # #  #     # #  #   ___________________________________
    #   # ####  ###  ##   #     # #  #                                      
    #   # #        # # #  #     # #  #    Please refer to the accompanying
    ####   ### ####  #  # ##### # ###    documentation for conditions of use
    ________________________________________________________________________

    File:    Hourglass.h
    Author:  Copyright  1993 Jason Howat
    Version: 2.00 (24 Jul 1993)
    Purpose: Hourglass module veneers
*/


#ifndef __Desk_Hourglass_h
#define __Desk_Hourglass_h

#ifdef __cplusplus
	extern "C" {
#endif

extern void Desk_Hourglass_On(void);
/*
See PRMs 2-734
 */

extern void Desk_Hourglass_Start(int startdelay);
/*
See PRMs 2-738
 */

extern void Desk_Hourglass_Percentage(int percent);
/*
See PRMs 2-739
 */

extern void Desk_Hourglass_Off(void);
/*
See PRMs 2-736
 */

extern void Desk_Hourglass_Smash(void);
/*
See PRMs 2-737
 */


#ifdef __cplusplus
}
#endif

#endif
