Cleanup
This commit is contained in:
parent
8e2818bbeb
commit
ce200823b8
|
@ -42,6 +42,12 @@ enum
|
||||||
ACTION_OK_IMAGEVIEWER
|
ACTION_OK_IMAGEVIEWER
|
||||||
};
|
};
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
uint32_t type_hash;
|
||||||
|
char path[PATH_MAX_LENGTH];
|
||||||
|
} menu_file_transfer_t;
|
||||||
|
|
||||||
#ifndef BIND_ACTION_OK
|
#ifndef BIND_ACTION_OK
|
||||||
#define BIND_ACTION_OK(cbs, name) \
|
#define BIND_ACTION_OK(cbs, name) \
|
||||||
cbs->action_ok = name; \
|
cbs->action_ok = name; \
|
||||||
|
|
|
@ -213,13 +213,4 @@ void menu_cbs_init(void *data,
|
||||||
|
|
||||||
bool menu_playlist_find_associated_core(const char *path, char *s, size_t len);
|
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
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue