home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / !DeskLib / h / Sound < prev    next >
Encoding:
Text File  |  1993-04-29  |  943 b   |  28 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:    Sound.h
  12.     Author:  Copyright © 1993 Jason Williams
  13.     Version: 0.01 (28 Mar 1993)
  14.     Purpose: Sound system interfaces
  15. */
  16.  
  17. #ifndef __dl_sound_h
  18. #define __dl_sound_h
  19.  
  20.  
  21. /*  Sound_SysBeep()
  22.  *  Simply writes a character 7 (system beep) to the VDU stream, in order
  23.  *  to sound a system beep. It sorta goes 'beep', really.
  24.  */
  25. extern void Sound_SysBeep(void);
  26.  
  27. #endif
  28.