diff options
author | Nicholas Piper <nicholas@users.sourceforge.net> | 2005-11-27 17:24:57 +0000 |
---|---|---|
committer | Nicholas Piper <nicholas@users.sourceforge.net> | 2005-11-27 17:24:57 +0000 |
commit | 08c8efb8acc3d66bc1cd314e00e1b2807777b587 (patch) | |
tree | f03271d4abe870f1ed7f997d1cd21d8de10f2e07 | |
parent | fe71c225e7a56b4ad19e7c2f61fdfa3ac1a4ded2 (diff) | |
download | libgpod-08c8efb8acc3d66bc1cd314e00e1b2807777b587.tar.gz libgpod-08c8efb8acc3d66bc1cd314e00e1b2807777b587.tar.xz libgpod-08c8efb8acc3d66bc1cd314e00e1b2807777b587.zip |
Add a comment about unicode
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1176 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r-- | bindings/python/gpod.i | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bindings/python/gpod.i b/bindings/python/gpod.i index a295240..4cf224a 100644 --- a/bindings/python/gpod.i +++ b/bindings/python/gpod.i @@ -68,7 +68,11 @@ PyObject* sw_get_playlists(Itdb_iTunesDB *itdb) { } %} +# be nicer to decode these utf8 strings into Unicode objects in the C +# layer. Here we are leaving it to the Python side, and just giving +# them utf8 encoded Strings. typedef char gchar; + typedef int gboolean; typedef int gint32; typedef unsigned int guint32; |