home *** CD-ROM | disk | FTP | other *** search
- /*
- #### # # # #
- # # # # # The FreeWare C library for
- # # ## ### # # # # ### RISC OS machines
- # # # # # # # # # # # ___________________________________
- # # #### ### ## # # # #
- # # # # # # # # # # Please refer to the accompanying
- #### ### #### # # ##### # ### documentation for conditions of use
- ________________________________________________________________________
-
- File: Hourglass.h
- Author: Copyright © 1992 Jason Williams
- Version: 1.00 (22 Mar 1992)
- Purpose: Hourglass module veneer macros
- */
-
-
- #ifndef __dl_hourglass_h
- #define __dl_hourglass_h
-
- #ifndef __dl_swi_h
- #include "SWI.h"
- #endif
-
- /* void Hourglass_On(void); */
- #define Hourglass_On() SWI(0,0,0x606c0)
-
- /* void Hourglass_Start(int startdelay); */
- #define Hourglass_Start(startdelay) SWI(1,0,0x606c3,startdelay)
-
- /* void Hourglass_Percentage(int percent); */
- #define Hourglass_Percentage(percent) SWI(1,0,0x606c4,percent)
-
- /* void Hourglass_Off(void); */
- #define Hourglass_Off() SWI(0,0,0x606c1)
-
- /* void Hourglass_Smash(void); */
- #define Hourglass_Smash() SWI(0,0,0x606c2)
-
- #endif
-