macemu/BasiliskII/src/include/asc.h
Dan Sumorok ce68f366cb Added asc.c, and asc.h.
Don't stop sound if we don't have to.
2013-06-09 19:34:19 -04:00

14 lines
247 B
C

#ifndef ASC_H
#define ASC_H
#include "sysdeps.h"
#include "cpu_emulation.h"
bool asc_init(int32 sample_rate);
bool asc_process_samples(const uae_u8 *samples, int count);
int32 asc_get_buffer_size();
void asc_callback();
void asc_stop();
#endif