]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Removed the v_ prefix from the TokenValue fields name
authorAli Sabil <ali.sabil@gmail.com>
Sat, 25 Oct 2008 18:17:16 +0000 (18:17 +0000)
committerAli Sabil <asabil@src.gnome.org>
Sat, 25 Oct 2008 18:17:16 +0000 (18:17 +0000)
2008-10-25  Ali Sabil  <ali.sabil@gmail.com>

* vapi/glib-2.0.vapi:

Removed the v_ prefix from the TokenValue fields name

svn path=/trunk/; revision=1927

ChangeLog
vapi/glib-2.0.vapi

index 1797229477e2f59c5270c408cb636aa28471e6d8..e05ab7a82bfec5634e48686ed18bc5b7bb3f012f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-10-25  Ali Sabil  <ali.sabil@gmail.com>
+
+       * vapi/glib-2.0.vapi:
+
+       Removed the "v_" prefix from the TokenValue fields name
+
 2008-10-25  Ali Sabil  <ali.sabil@gmail.com>
 
        * vapi/glib-2.0.vapi:
index 22f3ccc00a5a081be20be4bc4b7e03bd2938c2ca..2afa8350affb9803dbae019788395c26c4462215 100644 (file)
@@ -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)]