RetroArch/frontend/menu/menu_entries.h

33 lines
1.3 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
* Copyright (C) 2011-2014 - Daniel De Matteis
*
* 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/>.
*/
#ifndef MENU_ENTRIES_H__
#define MENU_ENTRIES_H__
#include "menu_common.h"
2014-09-01 03:50:20 +00:00
void menu_entries_push(file_list_t *list,
const char *path, const char *label, unsigned type,
2014-09-01 04:01:01 +00:00
size_t directory_ptr);
2014-09-01 03:50:20 +00:00
int menu_entries_push_list(menu_handle_t *menu, const char *path,
2014-08-31 17:41:28 +00:00
const char *label, unsigned menu_type);
2014-09-01 14:57:09 +00:00
int menu_parse_check(const char *label, unsigned menu_type);
int menu_parse_and_resolve(void);
2014-09-01 03:03:19 +00:00
void menu_entries_pop(void);
void menu_flush_stack_type(unsigned final_type);
#endif