/* * Copyright 2016 (c) Anna Schumaker. */ #ifndef OCARINA_GUI_AUDIO_H #define OCARINA_GUI_AUDIO_H /* Audio callback functions. */ extern struct audio_ops audio_ops; /* Called to initialize the GUI audio controls. */ void gui_audio_init(); /* Called to stop the GUI audio timeout function. */ void gui_audio_deinit(); #ifdef CONFIG_TESTING void test_gui_audio_timeout(); #endif /* CONFIG_TESTING */ #endif /* OCARINA_GUI_AUDIO_H */