enhance GError binding
authorJuerg Billeter <j@bitron.ch>
Tue, 29 Jan 2008 10:45:23 +0000 (10:45 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Tue, 29 Jan 2008 10:45:23 +0000 (10:45 +0000)
2008-01-29  Juerg Billeter  <j@bitron.ch>

* vapi/glib-2.0.vapi: enhance GError binding

svn path=/trunk/; revision=922

ChangeLog
vapi/glib-2.0.vapi

index c27fb62..883e913 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2008-01-29  Jürg Billeter  <j@bitron.ch>
 
+       * vapi/glib-2.0.vapi: enhance GError binding
+
+2008-01-29  Jürg Billeter  <j@bitron.ch>
+
        * vapi/packages/libsoup-2.2/: fix SoupDataBuffer binding
 
        * vapi/libsoup-2.2.vapi: regenerated
index f0c01e6..c7b035e 100644 (file)
@@ -1376,6 +1376,10 @@ namespace GLib {
        [CCode (copy_function = "g_error_copy", free_function = "g_error_free")]
        public class Error {
                public Error (Quark domain, int code, string! format, ...);
+               public Error copy ();
+               public bool matches (Quark domain, int code);
+
+               public Quark domain;
                public int code;
                public string message;
        }