1 /* Time-stamp: <2006-06-05 21:34:12 jcs>
2 |
3 |  Copyright (C) 2002-2005 Jorg Schuler <jcsjcs at users sourceforge net>
4 |  Part of the gtkpod project.
5 |
6 |  URL: http://www.gtkpod.org/
7 |  URL: http://gtkpod.sourceforge.net/
8 |
9 |  Most of the code in this file has been ported from the perl
10 |  script "mktunes.pl" (part of the gnupod-tools collection) written
11 |  by Adrian Ulrich <pab at blinkenlights.ch>.
12 |
13 |  gnupod-tools: http://www.blinkenlights.ch/cgi-bin/fm.pl?get=ipod
14 |
15 |  The code contained in this file is free software; you can redistribute
16 |  it and/or modify it under the terms of the GNU Lesser General Public
17 |  License as published by the Free Software Foundation; either version
18 |  2.1 of the License, or (at your option) any later version.
19 |
20 |  This file is distributed in the hope that it will be useful,
21 |  but WITHOUT ANY WARRANTY; without even the implied warranty of
22 |  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23 |  Lesser General Public License for more details.
24 |
25 |  You should have received a copy of the GNU Lesser General Public
26 |  License along with this code; if not, write to the Free Software
27 |  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28 |
29 |  iTunes and iPod are trademarks of Apple
30 |
31 |  This product is not supported/written/published by Apple!
32 |
33 |  $Id$
34 */
35 
36 #ifndef ITDB_H
37 #define ITDB_H
38 
39 #ifdef HAVE_CONFIG_H
40 #  include <config.h>
41 #endif
42 
43 #include <gpod/itdb.h>
44 
45 typedef Itdb_iTunesDB iTunesDB;
46 typedef Itdb_Playlist Playlist;
47 typedef Itdb_Track Track;
48 typedef Itdb_Thumb Thumb;
49 typedef Itdb_Artwork Artwork;
50 typedef Itdb_IpodInfo IpodInfo;
51 typedef Itdb_PhotoDB PhotoDB;
52 typedef Itdb_PhotoAlbum PhotoAlbum;
53 #endif
54