ocarina/include/tests/gui.h

46 lines
972 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_favorite() {}
void __audio_hide() {}
void __audio_pause_changed() {}
void __audio_seek() {}
void __artwork_select_cover() {}
#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_add() {}
void __collection_choose() {}
#endif /* TEST_NEED_COLLECTION */
#ifdef TEST_NEED_PLAYLIST
void __playlist_keypress() {}
void __playlist_selection_changed() {}
#endif /* TEST_NEED_PLAYLIST */
#ifdef TEST_NEED_QUEUE
void __queue_disabled() {}
void __queue_filter() {}
void __queue_random() {}
void __queue_repeat() {}
#endif /* TEST_NEED_QUEUE */
#ifdef TEST_NEED_WINDOW
void __window_configure() {}
void __window_state() {}
#endif /* TEST_NEED_WINDOW */
#endif /* TESTS_GUI_H */