From: Ali Sabil Date: Sat, 4 Oct 2008 10:11:18 +0000 (+0000) Subject: Add missing properties to the GScanner binding, patch by Johann Prieur X-Git-Tag: VALA_0_4_0~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54236ec45b128e52886e77a9b684883bdb95b5ff;p=thirdparty%2Fvala.git Add missing properties to the GScanner binding, patch by Johann Prieur 2008-10-04 Ali Sabil * vapi/glib-2.0.vapi: Add missing properties to the GScanner binding, patch by Johann Prieur svn path=/trunk/; revision=1821 --- diff --git a/ChangeLog b/ChangeLog index c498116fd..9ed0c88ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-10-04 Ali Sabil + + * vapi/glib-2.0.vapi: + + Add missing properties to the GScanner binding, + patch by Johann Prieur + 2008-10-03 Jürg Billeter * vala/valaclass.vala: diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index cd081b52a..ca70264db 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -2136,6 +2136,14 @@ namespace GLib { [CCode (free_function = "g_scanner_destroy")] public class Scanner { public weak string input_name; + public TokenType token; + public TokenValue value; + public uint line; + public uint position; + public TokenType next_token; + public TokenValue next_value; + public uint next_line; + public uint next_position; public Scanner (ScannerConfig? config_templ); public void input_file (int input_fd); public void sync_file_offset ();