RetroArch/menu/cbs/menu_cbs_refresh.c

49 lines
1.4 KiB
C
Raw Normal View History

2015-02-27 02:25:28 +00:00
/* RetroArch - A frontend for libretro.
2017-01-22 12:40:32 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
2015-02-27 02:25:28 +00:00
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
2015-12-06 16:55:27 +00:00
#include "../menu_driver.h"
#include "../menu_cbs.h"
2015-02-27 02:25:28 +00:00
#ifndef BIND_ACTION_REFRESH
#define BIND_ACTION_REFRESH(cbs, name) \
cbs->action_refresh = name; \
cbs->action_refresh_ident = #name;
#endif
int action_refresh_default(file_list_t *list, file_list_t *menu_list)
2015-02-27 02:25:28 +00:00
{
2016-02-24 22:31:37 +00:00
menu_displaylist_ctx_entry_t entry;
if (!menu_list)
return -1;
2016-02-24 22:31:37 +00:00
entry.list = list;
entry.stack = menu_list;
if (!menu_displaylist_ctl(DISPLAYLIST_PUSH_ONTO_STACK, &entry))
return -1;
return 0;
2015-02-27 02:25:28 +00:00
}
int menu_cbs_init_bind_refresh(menu_file_list_cbs_t *cbs,
2016-07-01 17:24:26 +00:00
const char *path, const char *label, unsigned type, size_t idx)
2015-02-27 02:25:28 +00:00
{
2015-06-07 16:36:10 +00:00
if (!cbs)
return -1;
2016-07-01 17:24:26 +00:00
BIND_ACTION_REFRESH(cbs, action_refresh_default);
2015-06-07 16:36:10 +00:00
return -1;
2015-02-27 02:25:28 +00:00
}