static int playlist_view(void * param) { (void)param; switch (playlist_viewer()) { case PLAYLIST_VIEWER_MAINMENU: case PLAYLIST_VIEWER_USB: return GO_TO_ROOT; case PLAYLIST_VIEWER_OK: return GO_TO_PREVIOUS; } return GO_TO_PREVIOUS; }
static int playlist_view(void * param) { (void)param; int val; push_current_activity(ACTIVITY_PLAYLISTVIEWER); val = playlist_viewer(); pop_current_activity(); switch (val) { case PLAYLIST_VIEWER_MAINMENU: case PLAYLIST_VIEWER_USB: return GO_TO_ROOT; case PLAYLIST_VIEWER_OK: return GO_TO_PREVIOUS; } return GO_TO_PREVIOUS; }