diff options
author | sanine <sanine.not@pm.me> | 2022-08-28 11:25:44 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-28 11:25:44 -0500 |
commit | 0d6ece00397ebb9215ccf1af06cce22c3a94197e (patch) | |
tree | 022cc796822a998a59d8bf8896f02599ce6d3700 /src/sound.h | |
parent | a4dd0ad63c00f4dee3b86dfd3075d1d61b2b3180 (diff) |
begin plibsys refactor
Diffstat (limited to 'src/sound.h')
-rw-r--r-- | src/sound.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/sound.h b/src/sound.h new file mode 100644 index 0000000..282441b --- /dev/null +++ b/src/sound.h @@ -0,0 +1,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 |