summaryrefslogtreecommitdiffstats
path: root/src/itdb.h
diff options
context:
space:
mode:
authorteuf <teuf@f01d2545-417e-4e96-918e-98f8d0dbbcb6>2005-10-17 17:38:10 +0000
committerteuf <teuf@f01d2545-417e-4e96-918e-98f8d0dbbcb6>2005-10-17 17:38:10 +0000
commitb32950fce45aae25102b0afdd50851ef0abbab82 (patch)
treec17afbef79b7e58d5531b638c7bac8d71f4d7eb7 /src/itdb.h
parent29c60f1b026c95f3134366aebca236c2a43b29b0 (diff)
downloadlibgpod-b32950fce45aae25102b0afdd50851ef0abbab82.tar.gz
libgpod-b32950fce45aae25102b0afdd50851ef0abbab82.tar.xz
libgpod-b32950fce45aae25102b0afdd50851ef0abbab82.zip
2005-10-17 Christophe Fergeau <teuf@gnome.org>
* src/db-image-parser.c: (get_pixel_data), (ipod_image_new_from_mhni): * src/itdb.h: * src/itdb_itunesdb.c: (get_mhod): Changed type of the various fields in the ItdbImage structures so that they match what they are in the database on the iPod. git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1124 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'src/itdb.h')
-rw-r--r--src/itdb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/itdb.h b/src/itdb.h
index fa47396..3b4f23b 100644
--- a/src/itdb.h
+++ b/src/itdb.h
@@ -320,10 +320,10 @@ enum ItdbImageType {
struct _Itdb_Image {
enum ItdbImageType type;
char *filename;
- off_t offset;
- size_t size;
- unsigned int width;
- unsigned int height;
+ guint32 offset;
+ guint32 size;
+ gint16 width;
+ gint16 height;
};
typedef struct _Itdb_Image Itdb_Image;