(XMB) Make some stub function implementations for navigation/list operation callbacks
This commit is contained in:
parent
07cd41c46b
commit
6995d46529
|
@ -744,6 +744,68 @@ static void xmb_context_reset(void *data)
|
||||||
xmb->textures[k].id = xmb_png_texture_load(xmb->textures[k].path);
|
xmb->textures[k].id = xmb_png_texture_load(xmb->textures[k].path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void xmb_navigation_clear(void *data)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void xmb_navigation_decrement(void *data)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void xmb_navigation_increment(void *data)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void xmb_navigation_set(void *data)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void xmb_navigation_set_last(void *data)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void xmb_navigation_descend_alphabet(void *data, size_t *unused)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
(void)unused;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void xmb_navigation_ascend_alphabet(void *data, size_t *unused)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
(void)unused;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void xmb_list_insert(void *data,
|
||||||
|
const char *path, const char *unused, size_t list_size)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
(void)path;
|
||||||
|
(void)unused;
|
||||||
|
(void)list_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void xmb_list_delete(void *data, size_t list_size)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
(void)list_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void xmb_list_clear(void *data)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void xmb_list_set_selection(void *data)
|
||||||
|
{
|
||||||
|
(void)data;
|
||||||
|
}
|
||||||
|
|
||||||
menu_ctx_driver_t menu_ctx_xmb = {
|
menu_ctx_driver_t menu_ctx_xmb = {
|
||||||
NULL,
|
NULL,
|
||||||
xmb_get_message,
|
xmb_get_message,
|
||||||
|
@ -757,17 +819,17 @@ menu_ctx_driver_t menu_ctx_xmb = {
|
||||||
xmb_populate_entries,
|
xmb_populate_entries,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
xmb_navigation_clear,
|
||||||
NULL,
|
xmb_navigation_decrement,
|
||||||
NULL,
|
xmb_navigation_increment,
|
||||||
NULL,
|
xmb_navigation_set,
|
||||||
NULL,
|
xmb_navigation_set_last,
|
||||||
NULL,
|
xmb_navigation_descend_alphabet,
|
||||||
NULL,
|
xmb_navigation_ascend_alphabet,
|
||||||
NULL,
|
xmb_list_insert,
|
||||||
NULL,
|
xmb_list_delete,
|
||||||
NULL,
|
xmb_list_clear,
|
||||||
NULL,
|
xmb_list_set_selection,
|
||||||
xmb_init_core_info,
|
xmb_init_core_info,
|
||||||
&menu_ctx_backend_common,
|
&menu_ctx_backend_common,
|
||||||
"xmb",
|
"xmb",
|
||||||
|
|
Loading…
Reference in New Issue