Files
racket-sound/libao/c/ao-play-async/ao_playasync.h
2026-02-22 17:37:15 +01:00

10 lines
296 B
C

#ifndef AO_PLAYASYNC_H
#define AO_PLAYASYNC_H
extern void *ao_create_async(void *ao_handle);
extern void ao_stop_async(void *handle);
extern void ao_play_async(void *handle, double at_second, int buf_size, void *mem);
extern double ao_is_at_second_async(void *handle);
#endif // AO_PLAYASYNC_H