mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-22 18:58:21 +00:00
45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2013 - Daniel De Matteis
|
|
* Copyright (C) 2012-2013 - Michael Lelli
|
|
*
|
|
* 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 RGUI_H__
|
|
#define RGUI_H__
|
|
|
|
#include "menu_common.h"
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#ifndef __cplusplus
|
|
#include <stdbool.h>
|
|
#else
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void (*rgui_file_enum_cb_t)(void *ctx,
|
|
const char *path, unsigned file_type, size_t directory_ptr);
|
|
typedef bool (*rgui_folder_enum_cb_t)(const char *directory,
|
|
rgui_file_enum_cb_t file_cb, void *userdata, void *ctx);
|
|
|
|
extern unsigned RGUI_WIDTH;
|
|
extern unsigned RGUI_HEIGHT;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|