Add missing properties to the GScanner binding, patch by Johann Prieur
authorAli Sabil <ali.sabil@gmail.com>
Sat, 4 Oct 2008 10:11:18 +0000 (10:11 +0000)
committerAli Sabil <asabil@src.gnome.org>
Sat, 4 Oct 2008 10:11:18 +0000 (10:11 +0000)
2008-10-04  Ali Sabil  <ali.sabil@gmail.com>

* vapi/glib-2.0.vapi:

Add missing properties to the GScanner binding,
patch by Johann Prieur

svn path=/trunk/; revision=1821

ChangeLog
vapi/glib-2.0.vapi

index c498116..9ed0c88 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-10-04  Ali Sabil  <ali.sabil@gmail.com>
+
+       * vapi/glib-2.0.vapi:
+
+       Add missing properties to the GScanner binding,
+       patch by Johann Prieur
+
 2008-10-03  Jürg Billeter  <j@bitron.ch>
 
        * vala/valaclass.vala:
index cd081b5..ca70264 100644 (file)
@@ -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 ();