audio.c: get_audio_args()

This commit is contained in:
veclavtalica
2024-07-08 18:13:33 +03:00
parent e6ba50ab82
commit 6cb8736fc1
3 changed files with 14 additions and 3 deletions

View File

@@ -27,9 +27,9 @@ void play_audio(const char *path, const char *channel);
void play_audio_ex(const char *path, const char *channel, t_play_audio_args args);
void set_audio_args(const char *channel, t_play_audio_args args);
t_play_audio_args get_audio_args(const char *channel);
/* could be used for modifying args */
/* warn: is only valid if no other calls to audio are made */
t_play_audio_args *get_audio_args(const char *channel);
t_play_audio_args get_default_audio_args(void);