2015-03-09 14:39:39 +01:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2016-01-10 04:06:50 +01:00
|
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
2015-03-09 14:39:39 +01: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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2015-12-06 17:55:27 +01:00
|
|
|
|
2015-03-09 14:39:39 +01:00
|
|
|
#include "../menu_driver.h"
|
2015-11-02 20:41:42 +01:00
|
|
|
#include "../menu_display.h"
|
2015-12-06 17:55:27 +01:00
|
|
|
|
2015-03-09 14:39:39 +01:00
|
|
|
menu_ctx_driver_t menu_ctx_null = {
|
2015-06-26 18:35:35 +02:00
|
|
|
NULL, /* set_texture */
|
|
|
|
NULL, /* render_messagebox */
|
2015-10-03 05:08:29 +02:00
|
|
|
NULL, /* iterate */
|
2015-06-26 18:35:35 +02:00
|
|
|
NULL, /* render */
|
|
|
|
NULL, /* frame */
|
|
|
|
NULL, /* init */
|
|
|
|
NULL, /* free */
|
|
|
|
NULL, /* context_reset */
|
|
|
|
NULL, /* context_destroy */
|
|
|
|
NULL, /* populate_entries */
|
|
|
|
NULL, /* toggle */
|
|
|
|
NULL, /* navigation_clear */
|
|
|
|
NULL, /* navigation_decrement */
|
|
|
|
NULL, /* navigation_increment */
|
|
|
|
NULL, /* navigation_set */
|
|
|
|
NULL, /* navigation_set_last */
|
|
|
|
NULL, /* navigation_descend_alphabet */
|
|
|
|
NULL, /* navigation_ascend_alphabet */
|
2015-10-03 04:32:38 +02:00
|
|
|
NULL, /* lists_init */
|
2015-06-26 18:35:35 +02:00
|
|
|
NULL, /* list_insert */
|
2016-04-11 23:31:49 +07:00
|
|
|
NULL, /* list_prepend */
|
2015-06-26 18:35:35 +02:00
|
|
|
NULL, /* list_delete */
|
|
|
|
NULL, /* list_clear */
|
|
|
|
NULL, /* list_cache */
|
2015-10-22 04:12:32 +02:00
|
|
|
NULL, /* list_push */
|
2015-06-15 19:00:52 +02:00
|
|
|
NULL, /* list_get_selection */
|
2015-06-26 18:35:35 +02:00
|
|
|
NULL, /* list_get_size */
|
|
|
|
NULL, /* list_get_entry */
|
|
|
|
NULL, /* list_set_selection */
|
|
|
|
NULL, /* bind_init */
|
|
|
|
NULL, /* load_image */
|
2015-03-09 14:39:39 +01:00
|
|
|
"null",
|
2015-05-19 21:05:40 +02:00
|
|
|
NULL,
|
2015-11-02 01:17:06 +07:00
|
|
|
NULL,
|
2016-04-28 03:26:09 +07:00
|
|
|
NULL, /* update_thumbnail_path */
|
|
|
|
NULL, /* update_thumbnail_image */
|
2015-03-09 14:39:39 +01:00
|
|
|
};
|