From: Juerg Billeter Date: Sun, 11 May 2008 06:50:59 +0000 (+0000) Subject: add g_strv_length binding X-Git-Tag: VALA_0_3_2~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dfab8dbe8dcdd5f0505e80962b704ec798bf5c53;p=thirdparty%2Fvala.git add g_strv_length binding 2008-05-11 Juerg Billeter * vapi/glib-2.0.vapi: add g_strv_length binding svn path=/trunk/; revision=1361 --- diff --git a/ChangeLog b/ChangeLog index 23d927e88..9c619a258 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-05-11 Jürg Billeter + + * vapi/glib-2.0.vapi: add g_strv_length binding + 2008-05-11 Jürg Billeter * vapi/glib-2.0.vapi: remove obsolete InstanceLast attributes diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index 2dc7ac0e2..de9c30e23 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -1477,7 +1477,12 @@ namespace GLib { [Diagnostics] [PrintfFormat] public void debug (string format, ...); - + + /* String Utility Functions */ + + [NoArrayLength] + public uint strv_length (string[] str_array); + /* Character Set Conversions */ public static string convert (string str, long len, string to_codeset, string from_codeset, out int bytes_read = null, out int bytes_written = null) throws ConvertError;