ocarina/include/tests/gui.h

38 lines
845 B
C

/*
* Copyright 2016 (c) Anna Schumaker.
*/
#ifndef TESTS_GUI_H
#define TESTS_GUI_H
#ifdef TEST_NEED_AUDIO
void __audio_can_accel() {}
void __audio_pause_changed() {}
void __audio_seek() {}
#endif
#ifdef TEST_NEED_SIDEBAR
void __sidebar_keypress() {}
void __sidebar_resize() {}
void __sidebar_selection_changed() {}
#endif /* TEST_NEED_SIDEBAR */
#ifdef TEST_NEED_COLLECTION
void __collection_activated() {}
void __collection_add() {}
void __collection_buttonpress() {}
void __collection_keypress() {}
void __collection_selection_changed() {}
void __collection_toggled() {}
#endif /* TEST_NEED_COLLECTION */
#ifdef TEST_NEED_PLAYLIST
void __playlist_selection_changed() {}
#endif /* TEST_NEED_PLAYLIST */
#ifdef TEST_NEED_WINDOW
void __window_configure() {}
void __window_state() {}
#endif /* TEST_NEED_WINDOW */
#endif /* TESTS_GUI_H */