Added (void* data) to perform_action in menu_ctx_driver

This commit is contained in:
natinusala 2015-05-19 21:07:06 +02:00
parent 90d646dc45
commit 508a6ea627

View File

@ -254,7 +254,7 @@ typedef struct menu_ctx_driver
void (*list_set_selection)(file_list_t *list);
bool (*load_background)(void *data);
const char *ident;
bool (*perform_action)(unsigned action);
bool (*perform_action)(void* data, unsigned action);
} menu_ctx_driver_t;
extern menu_ctx_driver_t menu_ctx_rmenu;