From: Ali Sabil Date: Sat, 25 Oct 2008 18:17:16 +0000 (+0000) Subject: Removed the v_ prefix from the TokenValue fields name X-Git-Tag: VALA_0_5_1~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a49dd6673b7e2973e72e8ee85f7310dca962c716;p=thirdparty%2Fvala.git Removed the v_ prefix from the TokenValue fields name 2008-10-25 Ali Sabil * vapi/glib-2.0.vapi: Removed the v_ prefix from the TokenValue fields name svn path=/trunk/; revision=1927 --- diff --git a/ChangeLog b/ChangeLog index 179722947..e05ab7a82 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-10-25 Ali Sabil + + * vapi/glib-2.0.vapi: + + Removed the "v_" prefix from the TokenValue fields name + 2008-10-25 Ali Sabil * vapi/glib-2.0.vapi: diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index 22f3ccc00..2afa8350a 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -1914,18 +1914,30 @@ namespace GLib { [SimpleType] public struct TokenValue { - public void* v_symbol; - public string v_identifier; - public ulong v_binary; - public ulong v_octal; - public ulong v_int; - public ulong v_int64; - public double v_float; - public ulong v_hex; - public string v_string; - public string v_comment; - public uchar v_char; - public uint v_error; + [CCode (cname="v_symbol")] + public void* symbol; + [CCode (cname="v_identifier")] + public string identifier; + [CCode (cname="v_binary")] + public ulong binary; + [CCode (cname="v_octal")] + public ulong octal; + [CCode (cname="v_int")] + public ulong int; + [CCode (cname="v_int64")] + public ulong int64; + [CCode (cname="v_float")] + public double float; + [CCode (cname="v_hex")] + public ulong hex; + [CCode (cname="v_string")] + public string string; + [CCode (cname="v_comment")] + public string comment; + [CCode (cname="v_char")] + public uchar char; + [CCode (cname="v_error")] + public uint error; } [CCode (cprefix = "G_ERR_", has_type_id = false)]