Simplify touchscreen scrollbar handling code
[Rockbox.git] / apps / metadata.h
blobc496f40914a26b310bc4037201825dcc4437ec7d
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 Dave Chapman
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef _METADATA_H
23 #define _METADATA_H
25 #include <stdbool.h>
26 #include "config.h"
27 #include "id3.h"
29 unsigned int probe_file_format(const char *filename);
30 bool get_metadata(struct mp3entry* id3, int fd, const char* trackname);
31 #if CONFIG_CODEC == SWCODEC
32 void strip_tags(int handle_id);
33 #endif
35 #endif