changeset 2112:c1a825ee8cec

Use GLib types.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 20 Oct 2007 23:29:16 +0300
parents ac599b9b0490
children 05e0ef88c52c
files src/musepack/libmpc.h
diffstat 1 files changed, 14 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/src/musepack/libmpc.h	Sat Oct 20 23:18:42 2007 +0300
+++ b/src/musepack/libmpc.h	Sat Oct 20 23:29:16 2007 +0300
@@ -69,7 +69,7 @@
 
 typedef struct MpcDecoder
 {
-    char*      isError;
+    gchar*     isError;
     double     offset;
     bool       isOutput;
     bool       isAlive;
@@ -78,23 +78,23 @@
 
 typedef struct TrackInfo
 {
-    int   bitrate;
-    char* display;
-    int   length;
-    int   sampleFreq;
-    int   channels;
+    gint   bitrate;
+    gchar* display;
+    gint   length;
+    gint   sampleFreq;
+    gint   channels;
 };
 
 typedef struct MpcInfo
 {
-    char*    title;
-    char*    artist;
-    char*    album;
-    char*    comment;
-    char*    genre;
-    char*    date;
-    unsigned track;
-    unsigned year;
+    gchar*    title;
+    gchar*    artist;
+    gchar*    album;
+    gchar*    comment;
+    gchar*    genre;
+    gchar*    date;
+    unsigned  track;
+    unsigned  year;
 };
 
 static void       mpcOpenPlugin();