RetroArch/frontend/menu/file_list.h

58 lines
1.7 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* RetroArch - A frontend for libretro.
2013-01-01 00:37:37 +00:00
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
2013-03-11 06:13:11 +00:00
* Copyright (C) 2011-2013 - Daniel De Matteis
2012-01-08 01:30:32 +00:00
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2012-01-08 01:30:32 +00:00
* 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.
*
2012-04-21 21:13:50 +00:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2012-01-08 01:30:32 +00:00
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
2012-04-21 21:31:57 +00:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2012-01-08 01:30:32 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
2012-05-06 02:04:33 +00:00
#ifndef RGUI_LIST_H__
#define RGUI_LIST_H__
2012-01-07 23:57:44 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2013-03-16 08:55:08 +00:00
struct rgui_file;
typedef struct file_list
2013-03-16 08:55:08 +00:00
{
struct rgui_file *list;
size_t capacity;
size_t size;
} file_list_t;
2012-01-07 23:57:44 +00:00
void file_list_free(file_list_t *list);
2012-01-07 23:57:44 +00:00
void file_list_push(void *userdata, const char *path,
unsigned type, size_t current_directory_ptr);
void file_list_pop(file_list_t *list, size_t *directory_ptr);
void file_list_clear(file_list_t *list);
2012-01-07 23:57:44 +00:00
void file_list_get_last(const file_list_t *list,
const char **path, unsigned *type);
2012-01-07 23:57:44 +00:00
void file_list_get_at_offset(const file_list_t *list, size_t index,
const char **path, unsigned *type);
2012-01-07 23:57:44 +00:00
void file_list_set_alt_at_offset(file_list_t *list, size_t index,
2013-10-04 15:33:21 +00:00
const char *alt);
void file_list_get_alt_at_offset(const file_list_t *list, size_t index,
2013-10-04 15:33:21 +00:00
const char **alt);
void file_list_sort_on_alt(file_list_t *list);
2012-01-07 23:57:44 +00:00
#ifdef __cplusplus
}
#endif
#endif