mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-30 09:03:23 -05:00
27 lines
417 B
C
27 lines
417 B
C
|
|
||
|
#ifndef __FILESCANNER_H__
|
||
|
#define __FILESCANNER_H__
|
||
|
|
||
|
#include "ff-dbstruct.h"
|
||
|
|
||
|
int
|
||
|
filescanner_init(void);
|
||
|
|
||
|
void
|
||
|
filescanner_deinit(void);
|
||
|
|
||
|
/* Actual scanners */
|
||
|
int
|
||
|
scan_get_ffmpeginfo(char *filename, struct media_file_info *mfi);
|
||
|
|
||
|
int
|
||
|
scan_get_urlinfo(char *filename, struct media_file_info *mfi);
|
||
|
|
||
|
int
|
||
|
scan_xml_playlist(char *filename);
|
||
|
|
||
|
int
|
||
|
scan_static_playlist(char *filename);
|
||
|
|
||
|
#endif /* !__FILESCANNER_H__ */
|