blob: 282441bba29a495b49a5ce47888a79a80d754254 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef MOSSROSE_SOUND_H
#define MOSSROSE_SOUND_H
#include <mossrose.h>
int sound_copy(struct mossrose_sound_t *dest, struct mossrose_sound_t *src);
void sound_free_audio(struct mossrose_sound_t *sound);
#endif
|