This commit is contained in:
twinaphex 2016-02-05 14:13:49 +01:00
parent 8e2818bbeb
commit ce200823b8
2 changed files with 6 additions and 9 deletions

View File

@ -42,6 +42,12 @@ enum
ACTION_OK_IMAGEVIEWER
};
typedef struct
{
uint32_t type_hash;
char path[PATH_MAX_LENGTH];
} menu_file_transfer_t;
#ifndef BIND_ACTION_OK
#define BIND_ACTION_OK(cbs, name) \
cbs->action_ok = name; \

View File

@ -213,13 +213,4 @@ void menu_cbs_init(void *data,
bool menu_playlist_find_associated_core(const char *path, char *s, size_t len);
#ifdef HAVE_NETWORKING
typedef struct
{
uint32_t type_hash;
char path[PATH_MAX_LENGTH];
} menu_file_transfer_t;
#endif
#endif