Welcome to mirror list, hosted at ThFree Co, Russian Federation.

scanner.h - github.com/azatoth/minidlna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e4747ca6d28756bd7c4f7fa88c8aa4df7c98dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Media file scanner
 *
 * Project : minidlna
 * Website : http://sourceforge.net/projects/minidlna/
 * Author  : Justin Maggard
 * Copyright (c) 2008 Justin Maggard
 * This software is subject to the conditions detailed in the
 * LICENCE file provided in this distribution.
 * */
#ifndef __SCANNER_H__
#define __SCANNER_H__

#define BROWSEDIR_ID	"64"
#define MUSIC_DIR_ID	"1$20"
#define VIDEO_DIR_ID	"2$21"
#define IMAGE_DIR_ID	"3$22"

void
ScanDirectory(const char * dir, const char * parent);

#endif