/*
    ####             #    #     # #
    #   #            #    #       #          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 __dl_hourglass_h
#define __dl_hourglass_h

#ifdef __cplusplus
extern "C" {
#endif

extern void Hourglass_On(void);
extern void Hourglass_Start(int startdelay);
extern void Hourglass_Percentage(int percent);
extern void Hourglass_Off(void);
extern void Hourglass_Smash(void);

/* The following function was added for the DeskLib 2.30 [RM/32]
   release, and is NOT present in the original version of
   DeskLib 2.30.
*/
extern void Hourglass_LEDs(int leds);
#define Hourglass_LED_Top 1
#define Hourglass_LED_Bottom 2
#define Hourglass_LED_Both 3

#ifdef __cplusplus
}
#endif

#endif
