--- uae/src/include/gensound.h 2018/04/24 16:40:21 1.1 +++ uae/src/include/gensound.h 2018/04/24 17:20:28 1.1.1.8 @@ -9,17 +9,19 @@ extern int sound_available; -/* Determine if we can produce any sound at all. */ +extern void (*sample_handler) (void); + +extern unsigned int obtainedfreq; + +/* Determine if we can produce any sound at all. This can be only a guess; + * if unsure, say yes. Any call to init_sound may change the value. */ extern int setup_sound (void); extern int init_sound (void); extern void close_sound (void); -extern void sample16_handler (void); -extern void sample8_handler (void); +extern void switch_audio_interpol (void); + extern void sample16s_handler (void); -extern void sample8s_handler (void); -extern void sample_ulaw_handler (void); -extern void init_sound_table16(void); -extern void init_sound_table8(void); +extern void init_sound_table16 (void);