mirror of
https://github.com/libretro/RetroArch
synced 2025-03-30 07:20:36 +00:00
Remove rgui.h
This commit is contained in:
parent
d417669d48
commit
a7a30646de
@ -24,12 +24,6 @@
|
||||
#include "../config.h"
|
||||
#endif
|
||||
|
||||
#if defined(HAVE_RGUI)
|
||||
#include "menu/rgui.h"
|
||||
#elif defined(HAVE_RMENU)
|
||||
#include "menu/rmenu.h"
|
||||
#endif
|
||||
|
||||
typedef struct frontend_ctx_driver
|
||||
{
|
||||
void (*environment_get)(int argc, char *argv[], void *args);
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include "rgui.h"
|
||||
#include "menu_common.h"
|
||||
#include "menu_context.h"
|
||||
#include "../../file_list.h"
|
||||
#include "../../general.h"
|
||||
|
@ -1,40 +0,0 @@
|
||||
/* 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);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
@ -18,7 +18,7 @@
|
||||
#include "../driver.h"
|
||||
#include "../general.h"
|
||||
#include "../gfx/fonts/bitmap.h"
|
||||
#include "../frontend/menu/rgui.h"
|
||||
#include "../frontend/menu/menu_common.h"
|
||||
#include "../gfx/gfx_common.h"
|
||||
|
||||
#ifdef HW_RVL
|
||||
|
Loading…
x
Reference in New Issue
Block a user