Commit 66a61feb authored by Francois Cartegnie's avatar Francois Cartegnie

playlist: fetcher: move playlist_album_t

Only used by fetcher for cache entries
parent 6a1fd4fb
...@@ -25,15 +25,6 @@ ...@@ -25,15 +25,6 @@
#ifndef _PLAYLIST_ART_H #ifndef _PLAYLIST_ART_H
#define _PLAYLIST_ART_H 1 #define _PLAYLIST_ART_H 1
typedef struct
{
char *psz_artist;
char *psz_album;
char *psz_arturl;
bool b_found;
} playlist_album_t;
int playlist_FindArtInCache( input_item_t * ); int playlist_FindArtInCache( input_item_t * );
int playlist_FindArtInCacheUsingItemUID( input_item_t * ); int playlist_FindArtInCacheUsingItemUID( input_item_t * );
......
...@@ -43,6 +43,15 @@ ...@@ -43,6 +43,15 @@
/***************************************************************************** /*****************************************************************************
* Structures/definitions * Structures/definitions
*****************************************************************************/ *****************************************************************************/
typedef struct
{
char *psz_artist;
char *psz_album;
char *psz_arturl;
bool b_found;
} playlist_album_t;
typedef struct playlist_fetcher_entry_t typedef struct playlist_fetcher_entry_t
{ {
input_item_t *p_item; input_item_t *p_item;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment