view src/libaudtag/id3/id3v1.h @ 4887:0ddbd0025174 default tip

added libaudtag. (not used yet.)
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Wed, 05 May 2010 18:26:06 +0900
parents
children
line wrap: on
line source

/*
 * Copyright 2010 Tony Vroon
 *
 * This file is part of Audacious.
 *
 * Audacious is free software: you can redistribute it and/or modify it under
 * the terms of the GNU General Public License as published by the Free Software
 * Foundation, version 3 of the License.
 *
 * Audacious is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * Audacious. If not, see <http://www.gnu.org/licenses/>.
 *
 * The Audacious team does not consider modular code linking to Audacious or
 * using our public API to be a derived work.
 */

#ifndef ID3V1_H

#define ID3V1_H

#include <audlegacy/tuple.h>
#include <audlegacy/vfs.h>
#include "../tag_module.h"

/* TAG plugin API */
gboolean id3v1_can_handle_file(VFSFile *f);
Tuple *id3v1_populate_tuple_from_file(Tuple *tuple,VFSFile *f);
gboolean id3v1_write_tuple_to_file(Tuple* tuple, VFSFile *f);

static const tag_module_t id3v1 = {
    .name = "ID3v1",
    .can_handle_file = id3v1_can_handle_file,
    .populate_tuple_from_file = id3v1_populate_tuple_from_file,
    .write_tuple_to_file = id3v1_write_tuple_to_file,
};
#endif