mpd/src/tag/ApeTag.hxx

21 lines
378 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2009-02-28 16:44:41 +01:00
2013-07-28 20:31:27 +02:00
#ifndef MPD_APE_TAG_HXX
#define MPD_APE_TAG_HXX
2009-02-28 16:44:41 +01:00
class InputStream;
class TagHandler;
/**
* Scan the APE tags of a stream.
*
* Throws on I/O error.
*
* @param path_fs the path of the file in filesystem encoding
*/
bool
tag_ape_scan2(InputStream &is, TagHandler &handler);
2009-02-28 16:44:41 +01:00
#endif