diff options
-rw-r--r-- | src/db-artwork-writer-dummy.c | 34 | ||||
-rw-r--r-- | tests/test-covers.c | 3 |
2 files changed, 36 insertions, 1 deletions
diff --git a/src/db-artwork-writer-dummy.c b/src/db-artwork-writer-dummy.c new file mode 100644 index 0000000..f72b996 --- /dev/null +++ b/src/db-artwork-writer-dummy.c @@ -0,0 +1,34 @@ +/* + * Copyright (C) 2005 Christophe Fergeau + * + * + * The code contained in this file is free software; you can redistribute + * it and/or modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either version + * 2.1 of the License, or (at your option) any later version. + * + * This file 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this code; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * iTunes and iPod are trademarks of Apple + * + * This product is not supported/written/published by Apple! + * + */ + +#include <config.h> + +#include "itdb.h" +#include "db-artwork-parser.h" + +int +ipod_write_artwork_db (Itdb_iTunesDB *db, const char *mount_point) +{ + return -1; +} diff --git a/tests/test-covers.c b/tests/test-covers.c index 7c886b2..0d2c940 100644 --- a/tests/test-covers.c +++ b/tests/test-covers.c @@ -38,7 +38,8 @@ ipod_image_to_gdk_pixbuf (Itdb_Image *image) guchar *pixels; int row_stride; - printf ("width: %d height: %d\n", image->width, image->height); + printf ("width: %d height: %d size: %d\n", + image->width, image->height, image->size); if (image->type == ITDB_IMAGE_FULL_SCREEN) { row_stride = 100; |