home *** CD-ROM | disk | FTP | other *** search
- /*
- ** C S R S O U N D . H
- **
- ** For the C Spot Run C Add-On Library.
- **
- */
-
- #define DEF_OCTAVE 4 /* For the play() Function */
- #define DEF_TEMPO 32 /* For the play() Function */
-
- #define C 52325L
- #define D 58733L
- #define E 65926L
- #define F 69846L
- #define G 78399L
- #define A 88000L
- #define B 98777L
-
- void sound_init(void);
- void sound_done(void);
- void spkr_freq(long);
- void spkr_on(void);
- void spkr_off(void);
- int sound_left(void);
- void sound_quiet(void);
- void sndout(void);
- void sound(long,long);