24 lines
330 B
C
24 lines
330 B
C
|
|
#ifdef IRON_A2
|
|
|
|
#include <iron_audio.h>
|
|
#include <stdlib.h>
|
|
|
|
static iron_a2_buffer_t a2_buffer;
|
|
|
|
void iron_a2_init() {
|
|
iron_a2_internal_init();
|
|
}
|
|
|
|
void iron_a2_update() {}
|
|
|
|
void iron_a2_shutdown() {}
|
|
|
|
static uint32_t samples_per_second = 44100;
|
|
|
|
uint32_t iron_a2_samples_per_second(void) {
|
|
return samples_per_second;
|
|
}
|
|
|
|
#endif
|